Forums
Home / Fixing WordPress / Moving Posts
(@glenlmarine)
15 years ago
Is there a way to change the order of posts?
(@michaelh)
Change the order where?
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()) : ?>
<?php if (have_posts()) : ?>
put this:
<?php query_posts($query_string . '&orderby=date&order=ASC'); ?>
The query_posts() article explains the arguments in detail.