<?php $recent = new WP_Query("tag=Tag1&showposts=25");
I'm just a hack when it comes to code. If I want to display posts that have tag1 AND tag2 (not OR), how would that work?
<?php $recent = new WP_Query("tag=Tag1&showposts=25");
I'm just a hack when it comes to code. If I want to display posts that have tag1 AND tag2 (not OR), how would that work?
From the codex:
query_posts('tag=bread+baking+recipe');
This topic has been closed to new replies.