Skip to content

Instantly share code, notes, and snippets.

@danjjohnson
Created July 29, 2016 11:51
Show Gist options
  • Select an option

  • Save danjjohnson/d50de2cde23d267a9391aba40ecfa0e5 to your computer and use it in GitHub Desktop.

Select an option

Save danjjohnson/d50de2cde23d267a9391aba40ecfa0e5 to your computer and use it in GitHub Desktop.
Jetpack: Exclude related posts from multiple cats
function jetpackme_filter_exclude_category( $filters ) {
$filters[] = array( 'not' => array( 'term' => array( 'category.name.raw' => array( 'donotshow', 'events' ) ) ) );
return $filters;
}
add_filter( 'jetpack_relatedposts_filter_filters', 'jetpackme_filter_exclude_category' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment