Pavel Rudi
asked 9 years ago

Hi there! How to sort entries by date in reverse order (ASC)?

1 Answers
DominicStaff
answered 9 years ago

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 !

Powered by DW Question & Answer Pro