• <?php
    #
    # rt-theme loop
    #
    
    global $args;
    add_filter('excerpt_more', 'no_excerpt_more');
    
    if ($args) query_posts($args);
    if ( have_posts() ) : while ( have_posts() ) : the_post(); 
    
    ?>

    How do I get this to show in ascending order?

  • The topic ‘Post Order – Loop’ is closed to new replies.