I have posts that belong to multiple categories.
One of these categories is excluded via:
query_posts("cat=-10");
Problem now is the post doesn't show up in the loop as described here: http://codex.wordpress.org/Template_Tags/query_posts
This excludes all the posts that belong only to category 3. There is a proviso however: it will exclude all the posts that belong only to category 3. If a post belongs to another category as well, it will still be picked up.
I want to exlude this post if it's in only one specific category, if it's in another category at the same time, show it in the loop.
Did this behaviour change and the docs are not up to date?
Can someone please help me how to include this excluded post?
cheers