Skip to content

Instantly share code, notes, and snippets.

@gwithian
Created October 20, 2016 08:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gwithian/d6e56035be02e5a8b7627f3e085247fb to your computer and use it in GitHub Desktop.
Save gwithian/d6e56035be02e5a8b7627f3e085247fb to your computer and use it in GitHub Desktop.
/**
* Re-position featured image metabox from sidebar to central content area
*/
function change_meta_box_position() {
remove_meta_box( 'postimagediv', 'post_type_here', 'side' );
add_meta_box( 'postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', 'post_type_here', 'normal', 'high' );
}
add_action( 'do_meta_boxes', 'change_meta_box_position' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment