Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save braddalton/6556043 to your computer and use it in GitHub Desktop.
Save braddalton/6556043 to your computer and use it in GitHub Desktop.
add_filter( 'genesis_post_info', 'remove_post_info_exclude_news_category' );
/**
* @author Brad Dalton
* @link http://wpsites.net/web-design/modify-post-info-genesis
*/
function remove_post_info_exclude_news_category($post_info) {
if ( is_category('web-design') ) {
$post_info = '[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