Я не уверен, что вы хотите ...
Если вы хотите получить menu_order из поста / страницы, вы можете использовать что-то вроде
<?php
$id=1;
$default = 42;
get_post($id); //you can use any kind of query or use it in the loop
global $post;
if(empty($post->menu_order)) //if not set give the value you want
$post->menu_order = $default; //note that it won't update the value in the database
echo $post->menu_order;
wp_reset_query();
?>