这应该可以奏效。过滤器将检查图像并删除a(链接)标记。只需将其添加到主题的功能中即可。php:
add_filter( \'the_content\', \'attachment_image_link_remove_filter\' );
function attachment_image_link_remove_filter( $content ) {
$content =
preg_replace(
array(\'{<a(.*?)(wp-att|wp-content/uploads)[^>]*><img}\',
\'{ wp-image-[0-9]*" /></a>}\'),
array(\'<img\',\'" />\'),
$content
);
return $content;
}