Is it possible to sort pages in the loop using the admin’s order field (under page attributes)?

1
1

Yes, use the orderby and order clause in your query posts.

query_posts( array('orderby'=>'menu_order', 'order' => 'ASC' ) );

See: WP_Query#Order for reference

Leave a Reply

Your email address will not be published. Required fields are marked *