Wordpress会自动将链接添加到我在媒体中上传的每个图像。然后我找不到办法把它去掉。我如何上传没有链接的图像或删除它?只是没有选择是否使用链接上传。我为此尝试了许多插件,但似乎没有一个能起作用。当我在Wordpress的默认Gallery小部件中使用上传的图像时,就会发生这种情况。我也试过这个代码,但什么也没试过。代码:
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;
}