Skip to content

Instantly share code, notes, and snippets.

@mrbobbybryant
Last active August 29, 2015 14:15
Show Gist options
  • Save mrbobbybryant/3ca96d187c3184728f55 to your computer and use it in GitHub Desktop.
Save mrbobbybryant/3ca96d187c3184728f55 to your computer and use it in GitHub Desktop.
Move Featured Image Metabox
<?php
function gmwm_move_featured_image() {
remove_meta_box( 'postimagediv', 'metabox', 'side' );
add_meta_box('featured_image', 'Add Featured Image', 'post_thumbnail_meta_box', 'metabox', 'normal', 'high');
}
add_action( 'do_meta_boxes', 'gmwm_move_featured_image' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment