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/5542759 to your computer and use it in GitHub Desktop.
Save braddalton/5542759 to your computer and use it in GitHub Desktop.
// Customize the post info function
add_filter( 'genesis_post_info', 'post_info_filter' );
function post_info_filter($post_info) {
$post_info = '[post_date] by [post_author_posts_link] [post_comments] [post_edit]';
return $post_info;
}
// Remove the post info function
remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment