• Terribly sorry to bother you – I’m using WordPress as a content management solution for distributing my own music.

    However, I’d like to explore displaying posts on the blog in ascending order (ie, oldest first) to keep the music published in order of creation.

    How would I change the default descending ordering to ascending, please?

    Many thanks for you consideration.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Add the first line of the following

    <php query_posts( $query_string . '&order=asc' ); ?>
    //followed by the existing Loop code
    <?php if( have_posts() ) : ?>
    <?php while( have_posts() ) : the_post(); ?>
    ...

    Thread Starter chron

    (@chron)

    <? php query_posts( $query_string . ‘&order=asc’ ); ?>

    Superb – that works – many thanks. 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Reverse publish order to ascending?’ is closed to new replies.