Hi, when i should ad Next and Previous links, they don't work.
my index.php pages: where the post will show.
<div id="content">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( in_category('3') ) { ?>
<div class="post-cat-three">
<?php } else { ?>
<div class="post">
<?php } ?>
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<small><?php the_time('F jS, Y'); ?></small>
<br />
<div class="entry">
<?php the_content(); ?>
</div>
<p class="postmetadata">Postad i <?php the_category(', '); ?> | <?php the_tags(__('Taggar: '), ', ', ' | '); ?> <?php edit_post_link(__('Ändra')); ?></p>
</div>
<?php endwhile; else: ?>
<p>Tyärr, det du letar efter finns inte.</p>
<p><?php next_posts_link('« Older Entries') ?></p>
<p> <?php previous_posts_link('Newer Entries »') ?></p>
<?php endif; ?>
<?php get_footer(); ?>
</div>