Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/5722443 to your computer and use it in GitHub Desktop.
Save braddalton/5722443 to your computer and use it in GitHub Desktop.
add_filter( 'genesis_post_info', 'custom_post_info_single_posts' );
/**
* @author Brad Dalton
* @learn more http://wpsites.net/web-design/modify-post-info-genesis
*/
function custom_post_info_single_posts($post_info) {
if ( is_single() ) {
$post_info = '[post_date] by [post_author_posts_link] [post_comments] [post_edit]';
return $post_info;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment