• Is there a way I could get new posts to go to the bottom just like as in the forum where old post stays on top and new post under it? That’s how I want my blog set up. Thanks!

Viewing 1 replies (of 1 total)
  • You will need to modify the template that displays the posts. The exact file depends on your theme. You insert the following code just before the line containing
    if (have_posts()) {

    global $wp_query;
    query_posts(
       array_merge(
          $wp_query->query,
          array('order' => 'ASC')
       )
    );

    Again, the exact syntax depends on your theme. If you post a link to your site, you might get a more specific answer.

Viewing 1 replies (of 1 total)
  • The topic ‘Old posts on top and new post on bottom?’ is closed to new replies.