WordPress Multiple Taxonomy Query
I've a simple form made up of two multiple selects which (as if by magic) filters my posts archive with URL parameters:
form class="filters"
select name="country" multiple
option value="united-kingdom"United Kingdom/option
option value="ireland"Ireland/option
/select
select name="type" multiple
option value="director"Director/option
option value="partner"Partner/option
/select
input type="submit"
/form
If I select 'Ireland' and 'Partner' I'm sent to:
https://example.com/network/?country=ireland_type=partner
Then, if I select multiple values such as 'Ireland', 'United Kingdom' and 'Partner' I'm sent to:
https://example.com/network/?country=irelandcountry=united-kingdom_type=partner
My question is, how can I use this form to create a conditional 'OR' request more like https://example.com/network/?country=ireland,united-kingdomtype=partner?