Skip to content

Instantly share code, notes, and snippets.

@bradpotter
Created July 5, 2014 18:05
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 bradpotter/c03d387bf5d9f8f932f8 to your computer and use it in GitHub Desktop.
Save bradpotter/c03d387bf5d9f8f932f8 to your computer and use it in GitHub Desktop.
//* Customize the entry meta in the entry header
add_filter( 'genesis_post_info', 'themecore_post_info_filter' );
function themecore_post_info_filter($post_info) {
$post_info = '[post_date] [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