How to reorder meta box position in WordPress. In the following example, replace CPT with the post type name, like post, page, book, event, imaginary, foobar…
1 2 3 4 5 6 7 8 9 10 11 12 13 | add_filter( 'get_user_option_meta-box-order_CPT', 'metabox_order' ); function metabox_order( $order ) { return array( 'normal' => join( ",", array( // vvv Arrange here as you desire 'customdiv-{CPT}', 'authordiv', 'slugdiv', ) ), ); } |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.