lazy-load icon indicating copy to clipboard operation
lazy-load copied to clipboard

Lazy load images on your WordPress site to improve page load times and server bandwidth.

Results 9 lazy-load issues
Sort by recently updated
recently updated
newest added

WP 5.5 added [lazy loading for images](https://make.wordpress.org/core/2020/07/14/lazy-loading-images-in-5-5/) and WP 5.7 added [lazy-loading for iframes](https://make.wordpress.org/core/2021/02/19/lazy-loading-iframes-in-5-7/). This plugin's [readme suggests](https://github.com/Automattic/lazy-load/blob/1cb10cc99a19c255bde8a14ac844f730752083e6/readme.txt#L4) that it supports back to WP 3.2, though the [latest PHPCS config](https://github.com/Automattic/lazy-load/pull/22/files?file-filters%5B%5D=.dist&file-filters%5B%5D=.php&file-filters%5B%5D=.sh&file-filters%5B%5D=.yml&file-filters%5B%5D=dotfile&w=1#diff-5fdfa058c1c76c029a34df51111b4505b2846c80adc27a8088b597fca41bc0a7R42)...

question

Hi, there is some class or data-attr to disable lazy-load on specific image?

jQuery.image is probably a better option for handling lazy-loading and we can drop the dependency on sonar.

I'd love to see support for native lazy-loading of images. I would imagine if it detected browser support for native lazy loading it would add `loading="lazy"` to images and if...

It'll be really great to be able to customize some things via an options array: 1. The scrollin distance 2. Post-loading action 3. Image selection tweaks

This PR introduces - "Lazy juggling" of srcset/sizes attributes - Pass `$matches` to `lazyload_images_placeholder_image` filter allowing it to generate individually sized placeholders - Allow data:image placeholder URLs - Removed hide()...

Added data-lazy-src attribute to img tag and added noscript tag to allowed html, so they aren't stripped out by wp_kses_post.

It would be great to be able to disable lazy loading for selected images. This could potentially be achieved with a filter for certain CSS selectors or an attribute added...