Created
August 16, 2016 19:40
-
-
Save chaselivingston/305857b86ad2f9f4d8ea2e6ea62795d5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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