No change.
I have this code on two different pages.
One is the homepage, which you see upon entering the site. This is a page setup to be the static homepage in wp-admin; and has only the click-able titles of the 3 latest posts visible:
<?php query_posts('showposts=3&cat=-626'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="headline">
<div class="headline_date"><?php the_time('d M Y') ?></div>
<div class="headline_title"><a href='<?php the_permalink() ?>' class="headline_title"><?php the_title(); ?></a></div>
</div>
<?php endwhile; endif;?><?php wp_reset_query(); ?>
The second one is the actual blog page, a page setup to show ALL posts except those from category 626. I another code here:
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=-626&paged=$paged"); ?>
<?php while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>">
<h1><?php the_title(); ?></h1>
<p>door <strong><?php the_author() ?></strong> <img src="http://fileserv.twizted.be/vX/gui/icon_date.png" border="0" class="posticons" /> <?php the_time('d F Y') ?> <img src="http://fileserv.twizted.be/vX/gui/icon_comments.png" border="0" class="posticons" /> <?php comments_number('0 reacties','1 reactie','% reacties'); ?></p>
<?php the_content(); ?>
</div>
<hr size="1" color="#dadfe3" /><p> </p>
<?php endwhile; ?><?php wp_reset_query(); ?>
<div id="pagination">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
</div>
Could it have something to with this? Also, I deleted a plugin that generated events as posts (in category 626), which made sure these posts would not show up on any other page. Could it be that this setting is still in my database or something?