Created
March 22, 2013 05:47
-
-
Save spencejs/5219232 to your computer and use it in GitHub Desktop.
Rename Featured Image Box for Post Type In Wordpress
This file contains 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
//Rename Featured Image Box for Post Type | |
add_action('do_meta_boxes', 'projectposttype_image_box'); | |
function projectposttype_image_box() { | |
remove_meta_box( 'postimagediv', 'projects', 'side' ); | |
add_meta_box('postimagediv', __('Featured Image- Min. 310x170px'), 'post_thumbnail_meta_box', 'projects', 'side'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment