I would like to generate all posts that has say a category name of X and a tag name of Y with in wordpress.
query_posts('cat=X List&tag=Y');
I above works to an extent but not fully since I need to repeat this list and just echo the_title(). The problem is very similar to the one found here http://bit.ly/ba4Zot ,the solutions provided there would be ideal but none work. Any help would be appreciated, thanks in advance!