new to WP. i cant get my older newer entries to work. can someone help me? heres what the code looks like
<?php query_posts("cat=3"); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div align="left" id="post">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
</div>
<?php endwhile; endif; ?>
<a href="#"><?php next_posts_link('←Older') ?></a> <a href="#"><?php previous_posts_link('Newer→') ?></a>