Skip to content

Instantly share code, notes, and snippets.

@greymechanic
Created June 3, 2015 18:24
Show Gist options
  • Save greymechanic/a28df117c281c1487121 to your computer and use it in GitHub Desktop.
Save greymechanic/a28df117c281c1487121 to your computer and use it in GitHub Desktop.
function SearchFilter($query) {
if ($query->is_search) {
// specific categories to search
$query->set('cat', '8,9,12');
}
return $query;
}
add_filter('pre_get_posts','SearchFilter');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment