Forum Replies Created

Viewing 1 replies (of 1 total)
  • Forum: Plugins
    In reply to: Reverse order posting

    I had the same problem but found the solution here: http://codex.wordpress.org/Template_Tags/query_posts

    There is no need to change any core files. Just insert this code right above your loop, and change the variables to suit your needs.


    $categoryvariable=$cat; // assign the variable as current category
    $query= 'cat=' . $categoryvariable. '&orderby=date&order=ASC'; // concatenate the query
    query_posts($query); // run the query

    works perfectly every time.

Viewing 1 replies (of 1 total)