2017-07-17 56 views

回答

0

可以使用media_view_strings hook

add_filter('media_view_strings', 'so_45136011_change_featured_image_title', 10, 2); 
function so_45136011_change_featured_image_title($strings, $post){ 
    $strings['setFeaturedImageTitle'] = __('My new title'); 
    return $strings; 
}