terning
Member
Posted 2 years ago #
hey there
im using the theme Equilibrium 1.4. but it seems like it has a few thing i would like change.
On the front page the featured post also shows up as latest post. How can i change that?
A solution could be to make latest post show descending, or the oldest first, hence the date dos“nt matter to me...
if anyone can help, ill be must delightful and smiling :)
terning
Member
Posted 2 years ago #
terning
Member
Posted 2 years ago #
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.