Advertisement
imranmodel32

Move Feature Image under the title

Nov 20th, 2013
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. add_action('do_meta_boxes', 'customposttype_image_box');
  2.  
  3. function customposttype_image_box() {
  4.  
  5. remove_meta_box( 'postimagediv', 'customposttype', 'side' );
  6.  
  7. add_meta_box('postimagediv', __('Custom Image'), 'post_thumbnail_meta_box', 'customposttype', 'normal', 'high');
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement