Skip to content

Instantly share code, notes, and snippets.

@GreggFranklin
Created August 1, 2012 20:26
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 GreggFranklin/3230404 to your computer and use it in GitHub Desktop.
Save GreggFranklin/3230404 to your computer and use it in GitHub Desktop.
Move Featured Image Metabox
<?php
add_action('do_meta_boxes', 'gf_slider_image_metabox' );
/**
* Move Featured Image Metabox on slider post type
*/
function gf_slider_image_metabox() {
remove_meta_box( 'postimagediv', 'slider', 'side' );
add_meta_box('postimagediv', __('Custom Image'), 'post_thumbnail_meta_box', 'slider', 'normal', 'high');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment