如何更改删除特色图像的文本

时间:2017-01-18 作者:test

我已使用此代码更改特色图像链接的文本:

function slider_change_featured_image_text( $content ) {
if ( \'twabc\' === get_post_type() ) {
    $content = str_replace( \'Set featured image\', __( \'Set Slider Image \', \'slider\' ), $content );
    $content  .= \' <br/> <strong>Note :For better view , please upload image of size  2000 X 995.</strong> \';
    $content = str_replace( \'Remove featured image\', __( \'Remove Slider Image\', \'slider\' ), $content );
}
return $content;
}
add_filter( \'admin_post_thumbnail_html\', \'slider_change_featured_image_text\' );
它适用于Set featured image , 但不是为Remove featured image. 我该怎么做?

1 个回复
SO网友:prosti

测试时的问题总是很好。

你为什么不试试不同的外壳呢?

Set Featured Image
Remove Featured Image
你也可以试试str_ireplace()

相关推荐