neilgee
12/13/2015 - 12:53 AM

Remove Comments based on Category

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' );
	}
}