Move excerpt meta box to above content editor. It’s simple, just unregister
postexcerpt
box first then add another one on the top.
Here is my code:
1 2 3 4 5 6 7 | add_action( 'admin_menu', function () { remove_meta_box('postexcerpt', 'post', 'normal'); }, 999 ); add_action('edit_form_after_title', 'post_excerpt_meta_box'); |
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.