Change Featured Image Meta Box Content And Title
1 <?php
2
3 /** CHANGE FEATURED IMAGE META BOX CONTENT **/
4 add_filter( 'admin_post_thumbnail_html', 'add_featured_image_instruction');
5 function add_featured_image_instruction( $content ) {
6 $content .= '<p><i>The person image should be 92x92 pixels</i></p>';
7
8 return str_replace(__('Set featured image'), __('Add image'),$content);
9 }
10 function people_image_box() {
11 // Remove the orginal "Set Featured Image" Metabox
12 remove_meta_box('postimagediv', 'page', 'side');
13 // Add it again with another title
14 add_meta_box('postimagediv', __('Person Image'), 'post_thumbnail_meta_box', 'page', 'normal', 'high');
15 }
16 add_action('do_meta_boxes', 'people_image_box');
17
18 ?>
Comments
Sign in to leave a comment.

