How to reorder meta box position?

Users can drag and drop meta boxes and WordPress will save the order. So, in a sense, the order in which they were originally rendered does not matter.

You know which one comes first because when you call add_meta_box it simply pushes your meta box’s args onto a global array called $wp_meta_boxes. Whichever call to add_meta_box came first will be the first meta box.

Leave a Comment