Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Wordpress 使用以下行定义了 media.php 中新 srcset 属性中包含的最大分辨率:
$max_srcset_image_width = apply_filters( 'max_srcset_image_width', 1600, $size_array );
有没有办法从我的主题functions.php中更改该值(通过钩子等)?现在我在 media.php 本身中更改了它(不推荐 - 我知道......)。
我成功地将它添加到我的functions.php文件中
function new_srcset_max($max_width) { return 2000; } add_filter('max_srcset_image_width', 'new_srcset_max');