Logo Pupungbp.com

Need a WordPress expert help?

Moving WordPress Featured Image Box Below Title

Last Updated: June 27, 2020 | Reading Time: < 1 minute

featured_image_moved
By default, Featured Image Box, located at right column of the “add new” post / page. By using the following script, you’ll be able to move it to below the Title form.

/* Move Featured Image Below Title */
function move_featured_image_box() {
remove_meta_box( 'postimagediv', 'post_type', 'side' );
add_meta_box(
'postimagediv', 
__('Featured Image'),
'post_thumbnail_meta_box', 'post_type', 'normal', 'high');

}
add_action('do_meta_boxes', 'move_featured_image_box');

Change the post_type to your targeted post type, it can be “page”, “post”, or your “custom_post”.

Looking for an affordable WordPress solution?

We offer budget-friendly WordPress website development services to meet your needs. Prices start at $10.

Related Posts

Leave a Reply

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

This site uses Akismet to reduce spam. Learn how your comment data is processed.