Unable to combine “search value” and “tax_query” using WP_Query
This is a result of a problematic GROUP BY clause that’s added to WP_Query when tax_query is present. It conflicts with the s parameter. You can remove the GROUP BY entirely to fix it, but you shouldn’t do this for every WP_Query. I use the following class often to approach this: /** * Search Within … Read more