In case this does no work, you can do this.
I just figured out how to do it. This will allow you to exclude them, while ordering them however you want if that is your preference.
Open up the “functions.php” file for the theme and replace the portion under
“# Displays a list of pages”. It is located in your theme (/wp-content/themes/{name of your theme’s folder}/functions.php
Replace:
$querystr = “SELECT $wpdb->posts.ID, $wpdb->posts.post_title FROM $wpdb->posts WHERE $wpdb->posts.post_status = ‘publish’ AND $wpdb->posts.post_type = ‘page’ ORDER BY $wpdb->posts.post_title ASC”;
With:
$querystr = “SELECT $wpdb->posts.ID, $wpdb->posts.post_title FROM $wpdb->posts WHERE $wpdb->posts.post_status = ‘publish’ AND $wpdb->posts.post_type = ‘page’ ORDER BY $wpdb->posts.menu_order ASC”;
It took me three days to find this, so I figure I’d share. WordPress does not have a great support system, so if you can pass this on, please do. Please copy and paste the link to this post to other inquiries.