How to get the order attribute of a page

As we know we can sort pages in a query by their page order attribute, I can’t figure out how to get this number to use it for a conditional and the max number listed

Thanks,

1 Answer
1

Try with echo get_post_field('menu_order', $post->ID);

(or $post->menu_order)

Leave a Comment