Find all product that contain terms with %keywords% in WP_Query
Unfortunately, tax_query does not have a compare match modifier like meta_query, allowing for wildcard searches with the ‘LIKE’ operator. So you need to have a different approach. I can think of 2 ways to solve this problem, 1) Use the global $wpdb object to search for all the terms that match your text search and … Read more