Exclude posts by category from related posts
-
I have copied the code to exclude posts by category from my site from the related posts, but it does not seem to have any impact. I am wondering if there is a delay before the code takes effect. Right now it is included links to related posts that are in a private category and only available to logged in users. I am hoping to have these not show up as related posts at all.
function jetpackme_filter_exclude_category( $filters ) { $filters[] = array( 'not' => array( 'terms' => array( 'category.slug' => array( 'private', ), ), ), ); return $filters; } add_filter( 'jetpack_relatedposts_filter_filters', 'jetpackme_filter_exclude_category' );
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Exclude posts by category from related posts’ is closed to new replies.