Filter the query ONLY for the search results page
Lets break it down step by step: if ($query->is_search && is_page_template(‘search’)) { There are 3 problems here is_page_template search.php isn’t a page template, that’s not how the search template is loaded. So this won’t work. But if it did work, there’s a new problem. Functions such as is_page_template etc rely on the main query, but … Read more