How to get taxonomy term of the current page and populate queries in the template
Hm, if you registered a taxonomy for the “page” object type correctly and then assigned a term of that taxonomy to a page… I believe you can then access the taxonomy and term slugs in the following way: get_query_var( ‘taxonomy’ ) get_query_var( ‘term’ ) If you print_r($wp_query) you will see all the parameters that are … Read more