Is there a way to display all posts in the order of oldest first, newest last?
Thanks.
Is there a way to display all posts in the order of oldest first, newest last?
Thanks.
For example, using the WordPress Default theme, in the wp-content/themes/default/index.php file, you would add this line:
<?php query_posts($query_string . '&order=ASC'); ?>
just before this line:
<?php if (have_posts()) : ?>
Related:
Stepping Into Template Tags
Stepping Into Templates
Template Hierarchy
What if want the posts to remain in the "normal" order but have only the ARCHIVES be forward-chronological?
I want to know this too, putting archives in forward-chronological. Anyone out there that can help?
This topic has been closed to new replies.