Eliminating pages from search results
-
Hi , I like the GeeSearch plugin, but my site shows posts as
products, an ecommerce site. I want to stop Geesearch from returning
pages, like ‘contact us’ or ‘home’ as they mess up my product grids.
I had this overcome with the regular WP-search by adding to the
function.php file the following , but your script now ignores this,‘function SearchFilter($query) {
if ($query->is_search) {
$query->set(‘post_type’,’product’);
}
return $query;
}
add_filter(‘pre_get_posts’,’SearchFilter’);’thank you
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Eliminating pages from search results’ is closed to new replies.