Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created July 23, 2013 04:54
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Remove post date in entry header (requires HTML5 theme support)
<?php
// Remove post date in entry header (requires HTML5 theme support)
add_filter( 'genesis_post_info', 'post_info_filter' );
function post_info_filter($post_info) {
$post_info = '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