Forum Replies Created

Viewing 1 replies (of 1 total)
  • Here is the solution in case you haven’t found it yet:

    Replace this (The start of the loop):
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

    With this:

    <?php
    // we add this, to show all posts in our
    // sorted by ascending dates
    $posts = query_posts($query_string .
    ‘&orderby=date&order=asc&posts_per_page=-1’);

    if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

Viewing 1 replies (of 1 total)