Hi, I'm using wp 2.7 and need to come up with a query that will give me all posts in the Audio category, all posts tagged with 'podcast' and all posts tagged with 'audio', all in one query result. I've tried this:
query_posts('cat=3422&tag=audio,podcast'); // 3422 is the audio category ID
query_posts('category_name=audio&tag=audio,podcast');
and both are giving me an empty page. however, if i do either:
query_posts('cat=3422');
or
query_posts('tag=audio,podcast');
I get results. How can I combine the 2?