Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created May 31, 2013 02:26
Show Gist options
  • Save wpspeak/5682624 to your computer and use it in GitHub Desktop.
Save wpspeak/5682624 to your computer and use it in GitHub Desktop.
Exclude pages in search
<?php
/** Exclude Page in Search */
function exclude_search_pages($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','exclude_search_pages');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment