Exclude landing page and thank you page

My site started to add landing pages and thank you pages to search. I want these hidden with sign up access.

What is the easiest way to remove all labeled as either from search?

Here is my site. Today is the first day I have seen them revealed in search and don’t know how that happened.

Regards

Hey Toby,

Removing certain pages from WordPress search results is not a feature of our theme. Please try following this third party guide: https://www.wpbeginner.com/wp-tutorials/how-to-exclude-pages-from-wordpress-search-results/

If you don’t get your desired result or if you experience an issue, please consult with a third party developer.

Thanks.

As of yesterday, these pages never came up in search.

I just nuked all pages in SEARCH for now with the following code in my functions.php:

//Exclude pages from WordPress Search
if (!is_admin()) {
function wpb_search_filter($query) {
if ($query->is_search) {
$query->set(‘post_type’, ‘post’);
}
return $query;
}
add_filter(‘pre_get_posts’,‘wpb_search_filter’);
}

It looks like you have got the solution. Glad to hear that you got the solution. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.