我显然不知道怎么用谷歌搜索this page 已经解释了如何做我想要的事情。对其进行了一些调整,以使其适用于不同的帖子类型,我提出了以下建议:
add_action(\'do_meta_boxes\', \'replace_featured_image_box\');
function replace_featured_image_box()
{
$post_types = array(\'bwps\', \'page\', \'post\');
foreach( $post_types as $post_type ) {
remove_meta_box( \'postimagediv\', $post_type, \'side\' );
add_meta_box(\'postimagediv\', __(\'Featured Image <small style="opacity: .6">500*500</small>\'), \'post_thumbnail_meta_box\', $post_type, \'side\', \'low\');
}
}