Hello,
I have looked through the support forum but couldnt find a clear answer for my problem.
I am using the query_posts command within a category. the code is as follows,
<?php query_posts('cat=53&showposts=1'); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
Now the category displays the most latest post on the page as i want it to. No problem there. However, there is no way of viewing the older post for this particular category (since only the latest one is displayed).
How can i add a link like OLDER ENTRIES to this page and make them link to the rest of the posts? Would appreciate any help.
Thank you for reading.