I am having the same problem as jk0170, above: Subpages do not sort properly. Here is the code I have no doubt botched up in sidebar.php modifying the wp-list-pages function.
<?php
/* Uncomment this section if you need to have more page navigation than the top
navigation bar allows. You'll still be able to have a few of the default
pages appear at the top (the one's that the Blix theme excludes by default).
**
?>
<h2><em>Pages</em></h2>
<ul class="pages">
<?php
$excluded = my_excluded_pages();
wp_list_pages('title_li=&sort_column=menu_order&title_li=&child_of='. $parent_id);
?>
In addition I have updated widgets.php, again modifying the wp-list-pages function:
//////////////////////////////////////////////////////////// Standard Widgets
function widget_pages($args) {
extract($args);
$options = get_option('widget_pages');
$title = empty($options['title']) ? __('Pages') : $options['title'];
echo $before_widget . $before_title . $title . $after_title . "<ul>n";
wp_list_pages("title_li=&sort_column=menu_order");
echo "</ul>n" . $after_widget;
Obviously, I have no idea what I’m doing. Will anyone please help!?
Thanks!