Skip to content

Instantly share code, notes, and snippets.

@willtonkin
Last active August 29, 2015 14:21
Show Gist options
  • Save willtonkin/f68075d1994431715d5c to your computer and use it in GitHub Desktop.
Save willtonkin/f68075d1994431715d5c to your computer and use it in GitHub Desktop.
// Filter search to only show post type of post
function SearchFilter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
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