Skip to content

Instantly share code, notes, and snippets.

@rupert-ong
Created September 24, 2013 14:23
Show Gist options
  • Save rupert-ong/6685554 to your computer and use it in GitHub Desktop.
Save rupert-ong/6685554 to your computer and use it in GitHub Desktop.
Wordpress: Limit Search Results to Specific Post Type
<?php
function SearchFilter($query) {
if ($query->is_search) {
$query->set('post_type',array('post','page'));
}
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