Skip to content

Instantly share code, notes, and snippets.

@eugenoprea
Last active December 12, 2015 02:38
Show Gist options
  • Save eugenoprea/4700098 to your computer and use it in GitHub Desktop.
Save eugenoprea/4700098 to your computer and use it in GitHub Desktop.
Genesis - Customize Post Info
/** Customize Post Info */
add_filter('genesis_post_info', 'eo_post_info_filter');
function eo_post_info_filter($post_info)
{
if ( ! is_page() )
{
$post_info = 'Written by [post_author_posts_link] on [post_date] at [post_time]';
return $post_info;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment