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.
我正在使用 drupal 9.2 最新版本。对于图像的高度和宽度也自动设置
loading = 'lazy'
此属性添加在网站的每个图像中。
我尝试使用下面的钩子取消设置这些属性。
function theme_preprocess_image(&$var) { $var['attributes']['loading'] = 'auto'; unset($var['height'], $var['width']); }
但是钩子没有被触发。是否需要更改最新版本的配置。