• 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 &raquo;</p>'); ?>
    
    </div>
    
    		<?php endwhile; endif; ?>
    
    <a href="#"><?php next_posts_link('&larr;Older') ?></a>&nbsp;&nbsp;&nbsp;<a href="#"><?php previous_posts_link('Newer&rarr;') ?></a>
Viewing 1 replies (of 1 total)
  • hi

    <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
          query_posts("cat=3&amp;paged=$paged"); ?>
Viewing 1 replies (of 1 total)

The topic ‘older newer entries’ is closed to new replies.