vielleicht hilft dir diese Beschreibung etwas weiter ... ist ein Auszug von query_post
Excluding Multiple Categories
Note: You cannot exclude more than one category with query_posts. Therefore you can use workarounds or plugins. For example, you can do an if/else statement in your loop to seek out subsequent categories and ignore them, like this:
<?php query_posts('cat=-1'); // exclude the first category ?>
<?php while (have_posts()) : the_post(); // start your Loop ?>
<?php if ( in_category(2) ) {
// ignore category 2 and do nothing and move on
} else { ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <br />
<?php endif; endwhile; ?>