<?php
/*
Plugin Name: Always Show Authors
Plugin URI: http://tarskitheme.com/
Description: Always show author names on posts in Tarski.
Author: Ben Eastaugh
Version: 1.0
Author URI: http://extralogical.net/
*/
function always_show_authors($show_authors) {
return true;
}
add_filter('tarski_show_authors', 'always_show_authors');
if (function_exists('tarski_resave_show_authors')) {
register_activation_hook(__FILE__, 'tarski_resave_show_authors');
register_deactivation_hook(__FILE__, 'tarski_resave_show_authors');
}
?>