Older/ Newer Entries
-
I am trying to get the older/newer entries to work for my main index page but i am having no luck. This is the template so far, what am i doing wrong?
<h1>News & Updates</h1>
<font size="2"><?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("cat=3&paged=$paged"); ?>
<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<h2>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></h2>
<div align="left" id="post">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
</div>
<?php endwhile; ?><div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div><?php endif; ?>
- The topic ‘Older/ Newer Entries’ is closed to new replies.