I know it's easy to display blog posts from EITHER a category or tag. However, I'd like WordPress to display content that is posted in a specific category AND with a specific tag.
I know it's easy to display blog posts from EITHER a category or tag. However, I'd like WordPress to display content that is posted in a specific category AND with a specific tag.
Thank-you for this. I don't really know how to program so how do I combine the codes:
Multiple category handling:
query_posts(array('category__and' => array(2,6)));
and
Multiple tag handling:
query_posts(array('tag__and' => array('bread','baking'));
So that the above would return only posts in both categories 2 and 6, AND tagged with both bread and baking?
Thanks!
You must log in to post.