Hi
I'm working on my site on my local server, and I've just upgraded to 3.2.1. Everything working fine except the posts on my home page, which are called with a query_string using combination of cat and tag - it seems the tag is no longer valid. This is the code:
<?php $temp_query = $wp_query; ?>
<?php query_posts('cat=106&tag=feat+feat'); ?>
Worked fine with my previous install, but now no posts are being pulled into the page.
If I remove '&tag=feat+feat', it shows all posts in the 106 category. How do I restore it so that it only shows posts in that category AND are tagged 'feat'? I'm stumped.
Thanks a lot.