I am working on a site with a much more complex URL structure and extensive category set/tree than normal.
For example: I wanted to have any combination of URLs like those listed below and only show entries that match all of the categories.
events/us/ga/atlanta
events/car/drift
events/us/ga/atlanta/car/drift
One thought that I had was to get the number of segments and if they are all categories then filter by categories with an AND operator. Such as category_group=“us&ga;&atlanta;&drift;&car;”
Any thoughts on a way to accomplish this or a better way to do this?