Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save braddalton/5211071 to your computer and use it in GitHub Desktop.
Save braddalton/5211071 to your computer and use it in GitHub Desktop.
function remove_posts_from_wp_search($query) {
if ($query->is_search) {
$query->set('post_type', 'page');
}
return $query;
}
add_filter('pre_get_posts','remove_posts_from_wp_search');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment