• Can anyone please help me to change the order of the Pages in this template? I’m not sure where to do this – I’m a WP newbie and don’t know much about coding, but I can follow simple instructions to edit the needed files. The sequence now seems to be in order of the Page’s creation, but I’d like to set my own sequence.

    Thanks for any help!

    Alice

Viewing 1 replies (of 1 total)
  • Hi,

    open your theme’s sidebar.php and look for this function call:

    wp_list_pages

    it will probably look something similar to:

    <?php wp_list_pages('exclude=14&title_li=')?>

    now make sure that

    sort_column=menu_order

    is in your theme’s wp_list_pages function call.

    for example:

    <?php wp_list_pages('exclude=14&sort_column=menu_order&title_li=')?>

    Now all you have to do is give each page an order id (0,1,2,3,…)
    in the admin part of your site (edit–>page)

    Hope this solves it

Viewing 1 replies (of 1 total)
  • The topic ‘How to change order of Pages in template?’ is closed to new replies.