Lazy Load for Images
Lazy Load WordPress images with a small javascript. Load images only after scrolling down and when viewport and improve page speed and SEO rankings.
Plugin info
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 605 days ago • 3 reviews
Is Lazy Load for Images abandoned?
Possibly abandoned (last update 605 days ago).
Compatibility
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
Description
Lazy Load for Images plugin make lazy load WordPress Images with less then 2kb small pure javascript code, no need jQuerry.
It’s help to increase performance of your website and make it fast loading and improve your website SEO rankins.
This plugin make lazy load of all type images like thumbnail, post content images, avatars, gravatars, widget images .etc.
All images load only when users scroll down and they are on viewport. It’s SEO and user friendly, working well with all browsers.
This plugin is structured very simple and does not need any settings. Activate it, Done!
Lazy Load for Images – Features & Advantages
- Load images only when required.
- Improve page loading speed.
- Reduce no. of HTTP requests.
- Lazy load also working on mobiles.
- Plugin used pure JS, no need of jQuery.
- Plugin used less than 2kb Javascript.
- Also support Gravatar.
- Also support Genesis Framework.
- SEO friendly (search engine optimized).
- Worked great with genesis framework.
- No need configurations (Just activate it, It’s Done!)
- Of course, available on GitHub
Simply install the plugin to enjoy a faster website. No options are available : you install it and the plugin takes care of everything.
Installation
Installing this plugin – Simple
- In your WordPress admin panel, go to Plugins > New Plugin, search for Lazy Load for Images and click “Install now“
- Activate plugin, All Done!.
- No need any manual configurations. Enjoy!
Need more help?
Feel free to open a support ticket.
Missing something?
If you would like to have an additional feature for this plugin, let me know
Frequently Asked Questions
Yes, All images that uploaded via you media library loaded with lazy load, with featured images.
and this plugin also support Genesis Framework speciailly.
Simply add a data-no-lazy="1" attribute tag in your specific image.
You can use no-lazyload class in images.
You can use this filter to exclude lazy load images.
add_filter( 'lazy_load_for_images', '__return_false' );
If you want stop lazyload on special pages, use it.
add_action( 'init', 'deactivate_lazy_load_for_images' );
function deactivate_lazy_load_for_images() {
if ( is_single() ) { // apply filter here
add_filter( 'lazy_load_for_images', '__return_false' );
}
}
If lazy load not working for your theme, you can add a add_filter in plugin class PHP files at hooks section, i.e. like this:
add_filter( 'post_thumbnail_html', array( __CLASS__, 'enable_lazy_load_for_images' ) );
By default, we use "data:image/gif;base64" or SVG for placeholder image. You can change via Plugin Code.
Yes, Lazy Load Images plugin work very well with every cache plugin.
Review feed
💯 Excellent plugin, Improves Page Load time Instantly ⚡
Screenshots
Changelog
1.5
- Tested for WordPress 6.5.2
- PHP Improvements for latest version.
- Javascript Improvement.
- Convert functions into class.
- Performance improvement.
- Fix image size for null sizes
- Change placeholder to SVG
- Some more improments, Enjoy!
1.4.2
- Tested for WordPress 5.8
- PHP Improvements.
- Plugin author and URL changed.
1.4.0
- Upgrade for latest version.
- JavaScript improvements.
- Add genesis framework support.
- Delete unused javascrit liberaries.
- Added hooks for stop lazy load images.
- plugin php code replaced with new php.
1.3.4
- Fixed some buges.
1.3.3
- Ignore AMP Pages.
1.3.0
- Upgraded for version 5.3.
1.2.0
- Placeholder image changed.
- Improve PHP.
- Lazy load script improvement.
1.0.0
- First version.