I have two taxonomies in wordpress under my Events custom post type.
One taxonomy is States, the other is Event Type.
I have a taxonomy-states.php and a taxonomy-event-type.php.
However sometimes I run a query between both taxonomies such as mysite.com/events/?state=texas&event-type=football, which picks up the taxonomy-states.php template.
When I run the above I use wordpress rewrite to get mysite.com/events/texas/football
I essentially need different options in my taxonomy-states.php template if the user is viewing two taxonomies vs just the one state taxonomy.
So my question is when I query two taxonomies, how can I dynamically check for this in wordpress?