更改响应图像的最大宽度为1600px

时间:2018-08-17 作者:Friedrich Siever

对不起,我先讲英语。刚开始使用快速响应的图像并阅读

https://make.wordpress.org/core/2015/11/10/responsive-images-in-wordpress-4-4/

因此,根据这篇文章,最大宽度为1.600px。我想知道如何将这个值增加到1800px?如果可能的话。

非常感谢。

1 个回复
最合适的回答,由SO网友:Castiblanco 整理而成

您可以简单地取消该限制,转到functions.php 并添加此代码。

function remove_max_srcset_image_width( $max_width ) {
    return false;
}
add_filter( \'max_srcset_image_width\', \'remove_max_srcset_image_width\' );
如果要增加,请转到functions.php 并添加此代码。

function custom_max_srcset_image_width( $max_width, $size_array ) {
    $max_width = 1800;
    return $max_width;
}
add_filter( \'max_srcset_image_width\', \'custom_max_srcset_image_width\');

结束

相关推荐

Images in Blog List

我只是改变了主题。我的博客页面列表用于显示我在每篇文章中使用的图像(内容图像,而非特色图像)。我使用图像的URL,而不是媒体库。单个帖子页面显示图像,但博客列表页面不会显示图像,除非我将图像添加到媒体库中。是否有任何代码和/或插件可用于确保在我将图像添加到单个帖子的内容时,该图像包含在博客列表页面上?是否有办法填充过去包含图像但不再在列表页上显示图像的帖子?谢谢