Skip to content

Instantly share code, notes, and snippets.

@WesStraham
Last active December 15, 2015 05:38
Show Gist options
  • Select an option

  • Save WesStraham/5210034 to your computer and use it in GitHub Desktop.

Select an option

Save WesStraham/5210034 to your computer and use it in GitHub Desktop.
This customizes the Genesis Post info by removing the author.
/** Customize the post info function */
add_filter( 'genesis_post_info', 'post_info_filter' );
function post_info_filter($post_info) {
if ( !is_page() ) {
$post_info = '[post_date] [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