How do I have the utmost, top, first, posted entry the first/oldest post, then descending to new (the latest posts being added on to) ??
Is this possible to set?
How do I have the utmost, top, first, posted entry the first/oldest post, then descending to new (the latest posts being added on to) ??
Is this possible to set?
To resort the order of posts, using the WordPress Default theme for example, in the wp-content/themes/default/index.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!, Michael.
You must log in to post.