0

我正在尝试使用str_replacephp 更改标签集特征图像并删除特征图像,但是如何在模态媒体框架中进行更改?

在此处输入图像描述

4

1 回答 1

0

您可以使用media_view_strings 挂钩

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;
}
于 2017-09-07T15:33:50.563 回答