Exclude Category not working
-
Hi,
I use the following filter to exclude category:
function jetpackme_filter_exclude_category( $filters ) { $filters[] = array( 'not' => array( 'term' => array( 'category.slug' => 'travel-end' ) ) ); return $filters; } add_filter( 'jetpack_relatedposts_filter_filters', 'jetpackme_filter_exclude_category' );The category travel-end is a child category.
Unfortunately, it’s not working, posts from travel-end still show up in related post. I forced WP to reindex the site but still the same.
Any fix please?
Thanks.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Exclude Category not working’ is closed to new replies.