• On the home page of my site using the GuruQ theme, the answers are posting oldest to newest when it should be posting the most recent answers first. I don’t know how to change this. Can you help me?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter krissimmons

    (@krissimmons)

    Okay, after digging in for a while, I found where to change the order of posts on the home page.

    Go to index.php (line 50) in the GuruQ theme and change the ‘ASC’ at the end of the string to ‘DEC’

    <?php
    query_posts( array( ‘post__not_in’ => $do_not_duplicate, ‘category_name’ => GURUQ_CAT, ‘posts_per_page’ => 100, ‘orderby’ => ‘date’, ‘order’ => ‘DEC’ ) );

    Thread Starter krissimmons

    (@krissimmons)

    The developer should be releasing a new version of the them soon that includes a way to make this happen in the GuruQ settings panel. I just tested it and it works great.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘GuruQ – Posts on front page are in reverse order’ is closed to new replies.