Excluding Page From Search
-
After doing some research I have found some similar problems but not actual solutions. I am trying to exclude a page from the search results without the use of a plugin.
The following is code that I’ve found only shows the results from the page I want to exclude:
// search filter function my_search_filter($wp_query) { if ($wp_query->is_search) { $wp_query->set('page_id','27'); } return $wp_query; } add_filter('pre_get_posts','my_search_filter');
Does the “set” method not work for the page_id? This function only pulls the results from a page with id of 27. I want to exclude this page from my search results.
Any help would be much appreciated.
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Excluding Page From Search’ is closed to new replies.