Skip to content

Instantly share code, notes, and snippets.

@antoniofrignani
Created June 4, 2012 09:48
Show Gist options
  • Save antoniofrignani/2867527 to your computer and use it in GitHub Desktop.
Save antoniofrignani/2867527 to your computer and use it in GitHub Desktop.
[WP] - Search a specific post type
// http://wpsnipp.com/index.php/posts/search-a-specific-post-type/
function SearchFilter($query) {
if ($query->is_search) {
// Insert the specific post type you want to search
$query->set('post_type', 'feeds');
}
return $query;
}
// This filter will jump into the loop and arrange our results before they're returned
add_filter('pre_get_posts','SearchFilter');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment