query_posts Exclude Directory, next_posts_link not work

Can anybody look at the following codes? After I excluded the category 15, the next_posts_link does not work, nor does the page navigation plugin. When I click the page 2, 3,4, it only display the posts in page 1.

<?php query_posts('cat=-15'); ?>

    <?php while (have_posts()) : the_post(); ?>
           ...  ....
         <?php endwhile; else: ?>
        <?php next_posts_link() ?>
    <?php endif; ?>

Related posts

Leave a Reply

2 comments

  1. How about…

    <?php query_posts('cat=-15'); ?>
    
        <?php while (have_posts()) : the_post(); ?>
               ...  ....
        <?php endwhile; ?>
    
      <?php next_posts_link() ?>        
    
    <?php endif; ?>
    

    ??