Related Posts: exclude a category from appearing, code provided doesnt’ work
-
Code from this Jetpack official page doesn’t work.
It still shows results from the excluded category.function jetpackme_filter_exclude_category( $filters ) { $filters[] = array( 'not' => array( 'term' => array( 'category.slug' => 'food' ) ) ); return $filters; } add_filter( 'jetpack_relatedposts_filter_filters', 'jetpackme_filter_exclude_category' );
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Related Posts: exclude a category from appearing, code provided doesnt’ work’ is closed to new replies.