我试图从我的Wordpress帖子中删除size属性,但我无法弄清楚如何去做。即使图像对于容器而言足够大,图像也是模糊的。如果您查看我的网站getting submatrices from a matrix,如果您检查图像,则可以看到"尺寸"属性和它说尺寸="(最大宽度:660px)100vw,660px"。我不想让它在那里,我希望图像宽度为100%而不是660px。有谁知道我怎么能解决这个问题?
这是我在检查网站上的代码时看到的内容:
{{1}}
答案 0 :(得分:1)
function disable_sourceset($sources) {
return false;
}
add_filter( 'wp_calculate_image_srcset', 'disable_sourceset' );
删除Wordpresses(相当)新的响应式图像功能,可能就是您所需要的。
答案 1 :(得分:0)
add_filter( 'wp_calculate_image_srcset_meta', '__return_null' );
只需添加function.php。