wordpress如何改变媒体帧模态特征图像来选择图像

时间:2017-07-17 04:32:49

标签: php wordpress wordpress-thesis-theme

我尝试更改标签集功能图像并使用str_replace php删除功能图像,但如何更改模态媒体框架?

enter image description here

1 个答案:

答案 0 :(得分: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;
}