Exclude Multiple Categories from Related Posts?
-
Using Jetpack’s documentation, I currently have the following code in my functions.php, which excludes the Dead category from appearing in my Jetpack Related Posts widget. And it works great!
function jetpackme_filter_exclude_category( $filters ) { $filters[] = array( 'not' => array( 'term' => array( 'category.slug' => 'dead' ) ) ); return $filters; } add_filter( 'jetpack_relatedposts_filter_filters', 'jetpackme_filter_exclude_category' );
However, how do you exclude multiple categories?
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Exclude Multiple Categories from Related Posts?’ is closed to new replies.