我不知道为什么要这样做,但可以使用preg\\u replace()来完成。
尝试将其添加到主题的功能中。php:
add_filter( \'admin_post_thumbnail_html\', \'remove_featured_image_link\' );
function remove_featured_image_link($content) {
$content_edit = preg_replace(\'/<a .*?class="(.*?thickbox.*?)">(.*?)<\\/a>/\',\'<div>$2</div>\',$content);
return $content_edit;
}