Bill - installed the pending release version.
The first level pages follow menu order as expected HOWEVER their child pages are still listing alphabetically rather than in menu order.
Is there a quick fix for this - ie so all pages and their children are listed in menu order?
Many thanks.
http://wordpress.org/extend/plugins/be-subpages-widget/
indyjoey
Member
Posted 6 months ago #
Add this to your function.php file.
add_filter( 'be_subpages_widget_args', 'be_subpages_menu_order' );
function be_subpages_menu_order( $args ) {
$args['sort_column'] = 'menu_order';
return $args;
}