Hello,
Currently, there is no inbuilt option to do that. You need to add some code to your theme’s function.php file.
if( has_category( array( YOUR_CATEGORY_IDs_TO_EXCLUDE_SEPARATED_BY_COMMA ) ) ){
$wpsr_content_op = new WPSR_Template_Output(‘content’);
$wpsr_excerpt_op = new WPSR_Template_Output(‘excerpt’);
remove_filter(‘the_content’, array($wpsr_content_op, ‘output’));
remove_filter(‘the_excerpt’, array($wpsr_excerpt_op, ‘output’));
}
Please try it. Thanks