Advertisement
Guest User

Untitled

a guest
Oct 20th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. /**
  2. * Re-position featured image metabox from sidebar to central content area
  3. */
  4. function change_meta_box_position() {
  5.  
  6. remove_meta_box( 'postimagediv', 'post_type_here', 'side' );
  7. add_meta_box( 'postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', 'post_type_here', 'normal', 'high' );
  8.  
  9. }
  10.  
  11. add_action( 'do_meta_boxes', 'change_meta_box_position' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement