Changing the order of pages in the menu
First thing: we're talking pages here, for changing the order of links you have fewer options with get_links_list
or more with a plugin.
Strangely, the default sort order of pages is alphabetical, not the order you set with the page order ranking. To fix that, and &sort_column=menu_order
to your wp_list_pages
command.
<?php wp_list_pages('title_li=<h1><a href="http://example.com/" title="Example Site Home">Example.com</a></h1>&sort_column=menu_order'); ?>
First thing: we're talking pages here, for changing the order of links you have fewer options with get_links_list
or more with a plugin.
Strangely, the default sort order of pages is alphabetical, not the order you set with the page order ranking. To fix that, and &sort_column=menu_order
to your wp_list_pages
command.
<?php wp_list_pages('title_li=<h1><a href="http://example.com/" title="Example Site Home">Example.com</a></h1>&sort_column=menu_order'); ?>
Comments
Post new comment