How to exclude Related posts from all the posts of a category?
-
Hi,
I want to disable Jetpack Related Posts from all the posts of a specific category. How do I do that. Here’s what I tried inside my functions.php:
function jetpackme_no_related_posts( $options ) { if ( array( 'category.slug' => 'my-category-slug' ) ) { $options['enabled'] = false; } return $options; } add_filter( 'jetpack_relatedposts_filter_options', 'jetpackme_no_related_posts' );
Website: https://sarkarilife.com
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘How to exclude Related posts from all the posts of a category?’ is closed to new replies.