URL with two taxonomies

1

I have the following problem .. I have two different taxonomies the " category " standards that are eg culture, sport, politics. And a custom taxonomy that is " special_cat " that has for example "infographics, profile, great report ..", and I have a taxonomy-cat_especiais.php file that accesses the posts that have marked some of those special categories .. So far no problem.

Now the question: If I want to access posts that have both a category and a special "cat_peace", is there any file that supports the standard Wordpress loop? I speak, without needing to create a page with a query passing arguments. Doing only the

if(have_posts()): while(have_posts()): the_post(); 
    
asked by anonymous 21.08.2014 / 17:19

1 answer

2

There is something for mixed file with two different taxonomies as you want and natively in WordPress. If you want something like this you need to be customized by creating a file using WP_Query .

    
21.08.2014 / 17:30