Hi there! How to sort entries by date in reverse order (ASC)?
1 Answers
Hi, To resolve this issue, you can open the wp-content -> themes ->dw-timeline ->index.php
file, find the line 21. Replace the following code: <?php while (have_posts()) : the_post(); ?>
With new code:
<?php query_posts($query_string . '&showposts=3&order=ASC'); ?>
<?php while (have_posts()) : the_post(); ?>
Hope this helps !
Please login or Register to submit your answer