I edited my wordpress page to only display posts from certain categories. This works, but if I want to view previous entries it just shows the same.
This is the blog: http://www.medusaphotography.be/blog/
This is the 'previous entries' page: http://www.medusaphotography.be/blog/?paged=2
As you can see, the posts are exactly the same.
This is my code:
...
<?php query_posts('cat=-1');?>
<?php if (have_posts()) : ?>
<?php while (have_posts() ) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
...
It's just a basic Wordpress loop with query_posts('cat=-1'); in front of it. If I remove this line, the previous entries work, but obviously the posts of category 1 still get displayed.
What am I doing wrong?