• Ok, the older quotes / newer quotes function is working but its only displaying the last post in tag cat. There are 5 posts with tag quotes and it moves through all five but….
    http://www.studiosmith.tv/wplearn/

    <?php query_posts('showposts=1&tag=quotes'); ?>
    
     <?php while (have_posts()) : the_post(); ?>
    
       <p><?php the_content(); ?></p>
    
       <div class="navigation">
         <span class="previous-entries"><?php next_posts_link('OLDER QUOTES') ?></span>
         <span class="next-entries"><?php previous_posts_link('NEWER QUOTES') ?></span>
       </div>
    
    <?php endwhile; ?>
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘returning last post only but functioning, what?’ is closed to new replies.