I create two custom taxonomies:
- Category (Cars, Pets etc).
- Region (New York, Washington etc).
Now I need to do archives like {Category}
in {Region}
(for ex. Cars in New York) and get slugs for it (mysite/ads/cars/nyc
or mysite/ads/cars/?city=New+York
).
How can I set such dependency?
I got only one idea - using subcategories (for ex. Cars is parent, New York is child) but think it's not good solution.
Nice solution has WooCommerce with its filters (attributes), but I don't know how it works.