Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@neilgee
Last active October 6, 2016 02:05
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save neilgee/bbbd235501272130ebe8 to your computer and use it in GitHub Desktop.
Save neilgee/bbbd235501272130ebe8 to your computer and use it in GitHub Desktop.
Remove Comments based on Category
<?php //<~ don't add me in
add_action( 'genesis_before_entry', 'wpb_remove_comments_category' );
function wpb_remove_comments_category() {
if ( !in_category( 38 ) ) {//adjust your Category ID's in the conditional
remove_action( 'genesis_after_entry', 'genesis_get_comments_template' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment