Skip to content

Instantly share code, notes, and snippets.

@spencejs
Created March 22, 2013 05:37
Show Gist options
  • Select an option

  • Save spencejs/5219193 to your computer and use it in GitHub Desktop.

Select an option

Save spencejs/5219193 to your computer and use it in GitHub Desktop.
Move Featured Image Box by Post Type In Wordpress
//Move Featured Image Box by Post Type
add_action('do_meta_boxes', 'customposttype_image_box');
function customposttype_image_box() {
remove_meta_box( 'postimagediv', 'art', 'side' );
add_meta_box('postimagediv', __('Custom Image'), 'post_thumbnail_meta_box', 'art', 'normal', 'high');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment