Skip to content

Instantly share code, notes, and snippets.

@shaynesanderson-zz
Created May 14, 2013 01:26
Show Gist options
  • Save shaynesanderson-zz/5572932 to your computer and use it in GitHub Desktop.
Save shaynesanderson-zz/5572932 to your computer and use it in GitHub Desktop.
Search results by Post Type
<?php
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