Skip to content

Instantly share code, notes, and snippets.

@jimmyk69
Created December 24, 2015 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimmyk69/ecce30c34aa2c9575cf9 to your computer and use it in GitHub Desktop.
Save jimmyk69/ecce30c34aa2c9575cf9 to your computer and use it in GitHub Desktop.
// exclude pages from search
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