Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #11154
    LogoSystems
    Member

    Is there a way to make the oldest blog post be at the top of the page and the newest at the bottom. Mine are the wrong way round
    Thank you

    http://www.logosystems.co.uk/blodwyns-blog/

    #11190
    Sakin
    Keymaster

    @LogoSystems: There is one option to for that. Build child theme and then copy page-blog.php and on that page edit the line
    $blog_query = new WP_Query( array( 'post_type' => 'post', 'paged' => $paged ) );
    to
    $blog_query = new WP_Query( array( 'post_type' => 'post', 'paged' => $paged, 'order' => 'ASC' ) );

    then you can add blog template to any page.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Blog’ is closed to new replies.