Skip to content

Instantly share code, notes, and snippets.

@tiltos
Created March 19, 2012 23:11
Show Gist options
  • Save tiltos/2128212 to your computer and use it in GitHub Desktop.
Save tiltos/2128212 to your computer and use it in GitHub Desktop.
WP: Limit search to post type
<?php
function mySearchFilter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','mySearchFilter');
//via http://wordpress.stackexchange.com/questions/5453/how-do-i-remove-pages-from-search
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment