Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save braddalton/5211147 to your computer and use it in GitHub Desktop.
Save braddalton/5211147 to your computer and use it in GitHub Desktop.
function remove_categories_wp_search($query) {
if ( $query->is_search() {
$query->set('cat','-1,-10');
}
return $query;
}
add_filter('pre_get_posts','remove_categories_wp_search');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment