Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fernandofuly/e0a18d7a65d78e177a8e to your computer and use it in GitHub Desktop.
Save fernandofuly/e0a18d7a65d78e177a8e to your computer and use it in GitHub Desktop.
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