Create Second Search Page Only for Custom Post Type
For the main search page, you can use pre_get_posts with a conditional: if($query->is_main_query() && $query->is_search && !is_admin()) { So only if it’s the main query, it’s a search query, and you’re not in the admin, adjust the query. Set whatever post types you DO want indexed in the main search query. Next step, setting up … Read more