2

Wordpress 使用以下行定义了 media.php 中新 srcset 属性中包含的最大分辨率:

$max_srcset_image_width = apply_filters( 'max_srcset_image_width', 1600, $size_array );

有没有办法从我的主题functions.php中更改该值(通过钩子等)?现在我在 media.php 本身中更改了它(不推荐 - 我知道......)。

4

1 回答 1

3

我成功地将它添加到我的functions.php文件中

function new_srcset_max($max_width) {
    return 2000;
}

add_filter('max_srcset_image_width', 'new_srcset_max');
于 2015-12-10T21:48:30.767 回答