更简单的解决方案:
add_action( \'admin_head\', \'replace_default_featured_image_meta_box\', 100 );
function replace_default_featured_image_meta_box() {
remove_meta_box( \'postimagediv\', \'my-post-type-here\', \'side\' );
add_meta_box(\'postimagediv\', __(\'My Cover Image\'), \'post_thumbnail_meta_box\', \'my-post-type-here\', \'side\', \'high\');
}
其主要思想是:用所需的标题重新声明元框。替换要编辑其默认值的帖子类型“
Featured Image“标签。