Is it possible to mod the archives page to automatically display the oldest posting from the selected category?
Is it possible to mod the archives page to automatically display the oldest posting from the selected category?
To resort the order of posts, using the WordPress Default theme for example, in the wp-content/themes/default/archive.php file, just before the line:
<?php if (have_posts()) : ?>
put this:
<?php query_posts($query_string . '&orderby=date&order=ASC'); ?>
The query_posts() article explains the arguments in detail.
Thanks a lot :D I will try.
This topic has been closed to new replies.