如何在Genesis主题框架中启用首页图片延迟加载

How to enable image lazy load on homepage in Genesis theme framework

我已经安装了 bj 延迟加载插件,但它无法处理 Genesis 主页特色图片。

根据BJ lazy load plugin官方文档,我们可以使用下面提供的代码片段为其他图像添加延迟加载支持。

<?php
$img_html = '<img src="myimage.jpg" alt="">';
$img_html = apply_filters( 'bj_lazy_load_html', $img_html );
echo $img_html;
?>

但现在我对如何在Genesis框架中实现它感到困惑。

编辑:我试图避免那些需要 jQuery 或类似库的延迟加载插件。

您可以使用 https://wordpress.org/plugins/a3-lazy-load/ 让我知道它是否适合您。