• Resolved 7bladePHOTOGS

    (@7bladephotogs)


    The default nav menu order is Page_ID and I need to move the page order around. Using “Order” in Page Attributes is not changing page order in the Nav Menu. I cannot figure this out. Can someone please help me?

    I am obviously a novice at implementing WP sites. Thanks in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Are you sure you don’t have a menu set in Appearance > menus?

    Another possibility is cached pages.

    Thread Starter 7bladePHOTOGS

    (@7bladephotogs)

    Thank you for the reply Datasoftict. I was able to find the problem and fix it via my header.php file. To fix it, I found the wp_list_pages usage and the sort_column parameter…

    <ul>
    		<?php wp_list_pages('sort_column=post_date&depth=1&title_li='); ?>
      		</ul>

    I changed post_date to menu_order…

    <ul>
    		<?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?>
      		</ul>

    Thanks again!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Default Page Order – Nav Menu’ is closed to new replies.