Wordpress 4.4:从functions.php更改media.php中的max_srcset_image_width

时间:2015-12-10 20:07:20

标签: wordpress hook srcset

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

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

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

1 个答案:

答案 0 :(得分:1)

我成功将其添加到我的functions.php文件

function new_srcset_max($max_width) {
    return 2000;
}

add_filter('max_srcset_image_width', 'new_srcset_max');