Is there a way to take this:
query_posts('category_name=special_cat&showposts=1');
and change it to this:
query_posts('category_name=special_cat&tag_id=10'); ?
I'm trying to make an archive where the first post stand out. That particular post *must* be of a certain category. I have no problem doing that part, but the other criteria is that it also have a particular tag. If I just have the first example (way up there), it'll show 1 post, but it's always the most recent, even if it's months old. So I'm also trying to sort that a bit further by also looking at the tag - but I just can't seem to get it to go.
Anyone know what I'm missing? I've tried all kinds of queries and stuff, and just can't make it work. It seems to like one or the other (category name/slug/id or tag name/slug/id), but not both together.