Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chaselivingston/305857b86ad2f9f4d8ea2e6ea62795d5 to your computer and use it in GitHub Desktop.
Save chaselivingston/305857b86ad2f9f4d8ea2e6ea62795d5 to your computer and use it in GitHub Desktop.
function jetpackme_filter_exclude_category( $filters ) {
$filters[] = array( 'not' => array(
'terms' => array( 'category.slug' =>
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