I want my oldest post to show up first, and my newest one at the bottom. Any way to do this?
Thanks in advance.
I want my oldest post to show up first, and my newest one at the bottom. Any way to do this?
Thanks in advance.
In your template file, index, single, whichever one you want to apply this to...
Find this...
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
Add a new line above...
<?php query_posts('order=asc'); ?>
or
<?php query_posts('order=desc'); ?>
More options here....
http://codex.wordpress.org/Template_Tags/query_posts#Orderby_Parameters
This topic has been closed to new replies.