A Simple Lazy Loading Functionality Plugin for WordPress. Built with lozad.js.
- Upload this repo (or git clone) to your plugins folder and activate it.
Just activate the plugin and enjoy the Lazy Loading of all content and thumbnail type images.
If you want to make the loading a little bit prettier, add something like this to your stylesheet:
.lazy-load {
transition: opacity .15s;
opacity: 0;
}
.lazy-load.is-loaded {
opacity: 1;
}