Skip to content

Instantly share code, notes, and snippets.

@mateusneves
Created May 30, 2017 14:26
Show Gist options
  • Save mateusneves/969920b3b96020538c0be34baf6c48f8 to your computer and use it in GitHub Desktop.
Save mateusneves/969920b3b96020538c0be34baf6c48f8 to your computer and use it in GitHub Desktop.
Limit search to a specific post type
function searchfilter($query) {
if ($query->is_search && !is_admin() ) {
$query->set('post_type',array('post','page'));
}
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