Forums
Home / Plugin: WP Lozad / Exlude N images from lazy loading
(@yoyurec)
1 year, 11 months ago
Is it possible to add feature to set numebr of images (1,2,…) to dynamically exclude above the fold images from loading lazy?
Snippet for
// Exclude above the fold imagesfunction add_lazy_exclude_class( $content ) { $content = preg_replace('/class="wp-image/', 'class="no-lazyload wp-image', $content, 1); return $content;}add_filter( 'the_content', 'add_lazy_exclude_class', 0 );