Slow Search Queries – How to exclude pages, media, excerpt, authors, private posts?
You should be able to use pre_get_posts to change the query. I’d suggest creating a custom plugin, so that if you ever change your theme your modifications will still apply. To get you started, here’s how you can set the post types being searched: function search_filter($query) { if ( !is_admin() && $query->is_main_query() ) { if … Read more