Created
February 20, 2016 09:41
-
-
Save hsleonis/492077a068b6712d9400 to your computer and use it in GitHub Desktop.
Wordpress move Featured Image box from side to main column or anywhere!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action('do_meta_boxes', 'themeaxe_image_box'); | |
function themeaxe_image_box() { | |
remove_meta_box( 'postimagediv', 'Tiles', 'side' ); | |
add_meta_box('postimagediv', __('Custom Image'), 'post_thumbnail_meta_box', 'Tiles', 'normal', 'high'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment