Remove Comments on Posts Remove post comments on your site using the Genesis Framework: <?php // Remove post comments add_action( 'wp_enqueue_scripts', 'custom_remove_comments' ); function custom_remove_comments() { remove_action( 'genesis_after_post', 'genesis_get_comments_template' ); } // Remove post comments in category ID #1 add_action( 'wp_enqueue_scripts', 'custom_remove_comments' ); function custom_remove_comments() { if ( in_category( '1' ) ) { remove_action( 'genesis_after_post', 'genesis_get_comments_template' ); } }