Skip to content

Instantly share code, notes, and snippets.

@greymechanic
Created June 3, 2015 18:23
Show Gist options
  • Save greymechanic/64897fde84d5f5b9783b to your computer and use it in GitHub Desktop.
Save greymechanic/64897fde84d5f5b9783b to your computer and use it in GitHub Desktop.
function SearchFilter($query) {
if ($query->is_search) {
// specific post to search
$query->set('post_type', 'feeds');
}
return $query;
}
// loop
add_filter('pre_get_posts','SearchFilter');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment