Tagged Questions
1
vote
1answer
2k views
How to pass URL parameters for advanced taxonomy queries with multiple terms for one custom taxonomy
This answer provides the code for a query that returns an OR match on a taxonomy term:
global $query_string;
$args['tax_query'] = array(
array(
'taxonomy' => 'status'
,'terms' ...