Created
May 7, 2015 16:26
-
-
Save thierrypigot/3472b1e241fafd1b0975 to your computer and use it in GitHub Desktop.
Change title of "Featured image" metabox on specific Custom Post Type
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', 'tp_change_image_box'); | |
| function tp_change_image_box() | |
| { | |
| remove_meta_box( 'postimagediv', 'MY_CUSTOM_POST_TYPE', 'side' ); | |
| add_meta_box( 'postimagediv', __('My custom title'), 'post_thumbnail_meta_box', 'MY_CUSTOM_POST_TYPE', 'side', 'high' ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment