How can i place Feature Image under title field in wp-admin?

Super late to the party, but well…

If you want to show your featured image right under the Post title in your Admin area, use this piece of code in your functions.php :

add_action('do_meta_boxes', 'my_cpt_move_meta_box');

function my_cpt_move_meta_box(){
   remove_meta_box( 'postimagediv', 'post_type', 'side' );
   add_meta_box('postimagediv', __('custom name'), 'post_thumbnail_meta_box', 'post_type', 'normal', 'high');
}

Be sure to change post_type to you rcustom post type slug. Additionally, you can add a custom name for th eimage (instead of ‘Featured Image’)

Leave a Comment