Contributors: FlorianBrinkmann
Donate link: https://www.paypal.me/flobrinkmann
Tags: lazysizes, lazy loading, performance, images
Requires at least: 4.9.8
Tested up to: 6.5
Stable tag: 8.2.0
Requires PHP: 7.0
Lazy loading plugin that supports images, iFrames, video and audio elements and uses the lightweight lazysizes script. With manual modification of the markup it is also possible to lazy load background images, scripts, and styles.
Lazy loads (without the need of any manually modifications):
- Images inserted via
img
orpicture
in posts, pages, Custom Post Types, Text Widgets, … - Post thumbnails.
- Inline background images.
- Or all images and other enabled media in the markup (that is not excluded or already has a lazy loading attribute), via the option to process the complete markup.
- iFrames.*
- Video elements.*
- Audio elements.*
* Can be enabled in the plugin options.
The plugin comes with the following options (under Settings › Media › Lazy Loader options):
- Do not lazy load elements with specific CSS classes (you can use the class
skip-lazy
by default). - Add filters that should be processed by Lazy Loader.
- Enable lazy loading for iFrames.
- Include the lazysizes native loading plugin that modifies images and iFrames to use the native lazy loading feature of browsers that already support it.
- Include the lazysizes unveilhooks plugin that adds support for more elements, for example, video and audio elements.*
- Enable lazy loading for the poster frame of video elements.
- Enable lazy loading for audio elements.
- Enable lazy loading for inline background images.
- Display a loading spinner.
- Disable the plugin on specific posts/pages (this shows a checkbox in the edit view of all public post types (except attachments) to disable lazy loading for an entire post).
- Process the complete markup of the site.
- A textarea to modify the default lazysizes config values.
* The unveilhooks extension of lazysizes supports more than video and audio elements, but you need to manually modify the markup to use it for:
- Background images not inserted with inline styles.
- Scripts.
- Styles.
The plugin adds a noscript
element as fallback for disabled JavaScript (can be disabled with the lazy_loader_generate_noscript
filter).
You can disable lazy loading for elements with specific CSS classes by defining them via the plugin settings (Settings › Media › Lazy Loader options). Or use the skip-lazy
class or the data-skip-lazy
attribute. skip-lazy
and data-skip-lazy
also work on wrapper elements to exclude the wrapper and its children from being processed.
- Install plugin.
- Activate it.
- You can find the plugin settings under Settings › Media › Lazy Loader options.
Yes. See the following example that would generate lazy-load-ready output for the result of the not-supported wp_get_attachment_image()
function:
global $lazy_loader;
if ( isset( $lazy_loader ) && $lazy_loader instanceof FlorianBrinkmann\LazyLoadResponsiveImages\Plugin ) {
echo $lazy_loader->filter_markup( wp_get_attachment_image( 1261 ) );
}
To make it happen, you need to pass the markup that contains the image (or images) to $lazy_loader->filter_markup()
. The if
statement ensures that the Lazy Loader object is there and that it is an object of the correct class.
Important: If you modify or remove the inline styles, also the style that shows the loading spinner is affected. So if you remove the styles or modify them without adding back the spinner styles, the spinner option will not work. I created a Gist with the spinner styles – just add them to your modification to make it work.
To disable or modify the plugin’s inline styles (except the style that hides the img.lazyload
elements when JS is disabled, so only the noscript
version is displayed) you can use the lazy_load_responsive_images_inline_styles
filter. For example, to remove the inline styles, use the following code:
add_filter( 'lazy_load_responsive_images_inline_styles', function () {
return '';
} );
If you want to modify it, you can do that like in the following code block (remember to include the opening and closing style
tags for additions/replacements). The code modifies the duration of the fade-in-effect:
add_filter( 'lazy_load_responsive_images_inline_styles', function ( $default_styles ) {
$default_styles = sprintf(
'%s <style>:root {
--lazy-loader-animation-duration: 600ms;
}</style>',
$default_styles
);
return $default_styles;
} );
The CSS from the example are the default styles that are used by the plugin (without the loading spinner styles). The display: block
for .lazyload
is important for the aspectratio plugin option.
There is a textarea in the plugin settings where you can insert custom settings for the lazysizes config.
Added
lazy_loader_generate_noscript
filter to allow disabling ofnoscript
element generation.
Tested with WordPress 6.5.
Fixed
- Updated
mastermind/html5
dependency to latest version, which fixes a PHP deprecation notice.
Tested with WordPress 6.1.
Fixed
- Disable lazy loading in TranslatePress editor.
Added
- Support for input elements of type
image
.
Removed
- Processing of
wp_get_attachment_image
, introduced in 7.2.0. I just noticed that processing that filter by default may break cases where a wrapper element has theskip-lazy
class to disable lazy loading for contained media elements. Lazy Loader is not aware of this when processingwp_get_attachment_image
, because it cannot check the parent elements. If you want to process that filter with Lazy Loader, you can enter it in the settings field for additional filters.
Fixed
- Stop processing embeds, because the lazysizes script is not loaded in the iframe and so the image in the embed can not be lazy loaded.
Fixed
- Duplicate images in Ultimate Addons for Elementor widget – thanks @kagg-design.
Fixed
- Missing JS files in SVN repo.
Tested with WordPress 5.7.
Added
- Process
wp_get_attachment_image
filter that was added in WordPress 5.6.
Changed
- Updated lazysizes and its plugins to 5.3.0.
Fixed
- Use same escaped version of SVG placeholder for
src
andsrcset
to fix a HTML validation error.
Changed
- Add timestamp of file modification as version query string to Lazy Loader JS files instead of WordPress version.
Fixed
- Problem with Lazy Loader being active in Oxygen Builder editor.
If you depend on the aspectratio script of lazysizes somehow that came with the plugin, this release has a breaking change: it removes the aspectratio option (and the script) because it uses inline SVGs as placeholders that have the same effect without needing the aspectratio script.
Added
- Disable core lazy load funcionality that comes with WP 5.5.
lazy_loader_attrs_to_strip_from_fallback_elem
filter that allows to provide an array of HTML attributes that should be stripped from the fallback element in thenoscript
element.
Changed
- If
width
andheight
attributes are present, the plugin uses an inline SVG to prevent content reflow – thanks to WP.org user lozula. - Updated lazysizes and its extensions to version 5.2.2.
Fixed
- Problems with inline HTML comments in
script
tags. To fix that. inline script elements are no longer wrapped in HTML comments during markup processing to hide them from the parser. That was necessary forDOMDocument()
but is not needed when usingMasterminds\HTML5()
(what Lazy Loader does).
Removed
- Aspectratio option. The change with the inline SVG makes that obsolete.
Changed
- Added empty default value for the
$content
param ofPlugin\filter_markup()
method to prevent a fatal error that occurs sometimes when Lazy Loader is used with the Content Cards plugin. - Check if there is already a script with the
lazysizes
handle registered and deregister it before enqueuing own version. Fixes issue with Avada theme that includes own version.
This release requires PHP 7
Added
- Option to process the complete markup of a page instead of only parts of it via the filters (might take a little longer because the plugin needs to process more markup and, if your site contains HTML errors, lead to unwanted behavior, because the DOM Parser tries to correct that).
- Option to define additional filters for the plugin to process.
- Ignore patterns for
skip-lazy
class anddata-skip-lazy
attribute. Use them if you want Lazy Loader to ignore an element and its children. Thedisable-lazyload
class anddata-no-lazyload
attribute will keep working for backwards compatibility. Adding the new class and attribute goes back to an initiative by Frank Goossens, developer of Autoptimize, who reached out to several devs of lazy loading plugins or plugins that also have a lazy loading feature to get a standard class and attribute across multiple plugins. - Added donation link to plugin header.
Changed
- Updated required PHP version to 7.0.
- Security improvements via escaping and specifying allowed HTML in setting descriptions. Thanks @igmoweb
- Simplified
Plugin\add_noscript_element()
method. It just clones the source element now, instead of creating a new empty element and adding all attributes to it. - Check markup for
[caption]
shortcode to prevent duplicated images in Elementor. - Class properties are private now.
Fixed
- Error with invalid attribute names in
Plugin\add_noscript_element()
method.
Changed
- Updated background image option text.
Changed
- Updated readme.
Added
- Lazy loading of background images.
- Lazy loading of videos with autoplay.
Changed
- Updated lazysizes and its extensions to 5.1.2.
- Updated tested up to version to 5.3.
Fixed
- Handle rest api requests with edit context as admin requests (thanks @websupporter!).
- Check if a post type supports
custom-fields
before loading block editor script.
Changed
- Increased priority for the calls of
the_content
andpost_thumbnail_html
filters from500
to10001
to fix issues with the ShortPixel Image Optimizer. So if you use those filters and they need to run after the Lazy Loader, you need to increase the priority, too. This is the change that makes it a major version change.
Fixed
- Audio shortcode stripped from frontend with all following content.
Tested with WordPress 5.2
Added
- Option for using the native loading extension from lazysizes.
- Textarea for custom lazysizes config values.
Changed
- Updated lazysizes to 5.1.0.
- Use CSS variable
var(--lazy-loader-animation-duration)
for duration of fade-in-effect after loading.
Fixed
- Do not load assets on pages where Lazy Loader is disabled.
- Preserve HTML and hex entities.
- Ignore inline scripts.
- Skip images that already have a
data-src
attribute. - Checkbox for disabling Lazy Loader not showing for Custom Post Types added via a plugin.
Fixed
- Removed debug code.
Tested with WordPress 5.1.
Changed
- Renamed object in main plugin file from
$plugin
to$lazy_loader
to make it accessible via the theme. - Added an example for calling the
filter_markup()
method of the plugin from the theme to modify markup of not-supported image functions likewp_get_attachment_image()
. - Updated lazysizes to 4.1.6.
Fixed
- Wrong year in changelog for 3.5.0 and 3.5.1. Thanks @pra85!
- Correctly remove the plugin options from the options database table on uninstall.
Fixed
- Wrong version number in plugin file.
Added
- Option to disable lazy loading for specific posts/pages via a checkbox. The checkbox can be enabled via an option under Settings › Media › Lazy Loader options.
- Possibility to use the
disable-lazyload
class to disable the lazy loader for an element and its children.
Changed
- Updated lazysizes to 4.1.5.
- Added note about limited browser support to loading spinner option.
- Updated placeholder source to a more stable variation (thanks diegocanal for the hint).
Fixed
- Only use
save_html()
method if markup was modified. - Keep
srcset
attribute with placeholder source to get valid HTML.
Added
- Support for
picture
element.
Fixed
- Only use
data-sizes
attribute, if value isauto
. - Removed unnecessary check for
src
attribute inmodify_img_markup()
.
Fixed
- Disable libxml errors.
Changed
- Set a transparent data URI as img
src
instead of removing it to avoid page jumps that can happen during image loading (at least in Chrome). - Updated lazysizes and plugins to 4.0.4.
Fixed
- Fix encoding issues with strings inside
script
elements.
Fixed
- Not working with PHP 5.3.
Fixed
- Use correct pattern for lazy loading of
video
andaudio
elements. - Removed unnecessary
else
and a chunk of duplicate code (thanks mackzwellz). - Issue with encoding of cyrillic characters.
Changed
- Updated lazysizes.js and the bundled plugins to 4.0.2.
- Run
post_thumbnail_html
filter later (priority 500, like for thethe_content
filter call, instead of 10), to fix a problem that appears when used with Responsify WP (thanks jgadbois). - Moved the
add_noscript_element()
method call to the beginning of themodify_*_markup
methods. With that, there is no need to remove thelazyload
class in theadd_noscript_element()
method, because it was not added yet. - Removed unnecessary
$new_iframe->setAttribute( 'src', $src )
call from theadd_noscript_element()
. - Removed unnecessary
$dom->saveHTMLExact()
calls from themodify_*_markup
methods. - Use own
FlorianBrinkmann\LazyLoadResponsiveImages\Helpers()->save_html()
method for saving the HTML.
Fixed
- Fix broken code blocks in readme file.
- Set
.lazyload
todisplay: block
to make the aspectratio option work correctly again.
Fixed
- Removed try to get width and height from images without
width
andheight
attr withgetimagesize
because it may cause a PHP warning.
Fixed
- Added inline doc for
FlorianBrinkmann\LazyLoadResponsiveImages\Settings()->add_color_picker()
. - Only load color picker styles and script if on media settings page.
(there was also a new feature added in 3.2.9, but I forgot to increase the minor version number there…)
Added
lazy_load_responsive_images_inline_styles
filter for modifying the inline CSS (for modification, you also need to add the opening and closingstyle
tags). If you use the spinner option and the filter, you need to add the spinner styles, because they are part of the filtered CSS (Gist with the spinner styles used by default).- Option to display a loading spinner and define its color.
Changed
- Use style inside
noscript
element to hide.lazyload
images if no JS instead of adding ajs
class via JS to thehtml
element. - Using
DOMXpath()->query()
to fetch the element nodes. - Looping the nodes once inside
FlorianBrinkmann\LazyLoadResponsiveImages\Plugin()->filter_markup()
and no longer one time in each of the three element-specific methods.
Fixed
- Do not modify elements inside noscript elements.
- Doc fixes.
Fixed
- Small error in the readme.
Added
- Option to load the lazysizes aspectratio plugin. This plugin calculates the space that the images need before they are loaded. With that enabled, the lazy loading should also work for masonry grids without further markup modifications. Thanks to W.org user zitrusblau for the hint with the plugin.
Fixed
- Correctly set
.lazyload
images todisplay: none
if JS is disabled.
Added
- Animated the opacity change when the images are loaded.
Fixed
- Duplicated images if, for example, the
the_content
filter is run multiple times. - Small doc fix.
Changed
- Automatically load unveilhooks extension if audio or video option is enabled, regardless of the option to load the unveilhooks plugin is enabled or not.
- Updated Tested up to version to 4.9.1.
Fixed
- Wrong path to plugin options in the readme.txt.
Fixed
- Fatal error due case mismatch in referencing the SmartDOMDocument class – sorry for that!
Fixed
- Line break issues with the readme for W.org.
Fixed
- Problem with duplicated images in HTML widget.
Fixed
- Load minified version of lazysizes unveilhooks plugin.
Added
- Option to automatically lazy load iFrames.
- Option to automatically lazy load videos.
- Option to automatically lazy load audio.
- Option to additionally load the unveilhooks plugin of lazysizes. This enables lazy loading of audio, video, scripts, and more.
- Support for images inside the text and HTML widget. Does not work for galleries in the widgets.
- Support for Gravatars.
- Autoloading of classes with Composer.
Changed
- Changed plugin name to »Lazy Loader«.
- Moved settings to the media settings page and removed the customizer section.
- PHP comment style for inline comments.
- Renamed the class files in
src
.
Fixed
- Small doc errors.
Changed
- Updated lazysizes to 4.0.1.
- Updated »Tested up to« version to 4.9 in readme.
Fixed
- Added back the support for
data-no-lazyload
attr to disable lazy loading for specific images (was removed in 3.1.0 without keeping backwards compatibility in mind, sorry).
Changed
- Added details to the readme, what images are lazy loaded.
Fixed
- Now also adds a
noscript
element for gallery images.
Removed
- No lazy loading for images that are added via
wp_get_attachment_image()
, because for those images cannot be added anoscript
fallback.
Fixed
- is_admin_request() check does not work for subdirectory installs.
Fixed
- Product image appears twice in WooCommerce cart.
Fixed
- Bump »Requires at least« to 4.5 because using wp_add_inline_script() since a few versions.
Fixed
- Use saveHTMLExact() method from SmartDomDocument to prevent doctype, html and body element to be added to the content.
Fixed
- Disable lazy loading for AMP pages which are generated by the »AMP« plugin by Automattic.
Fixed
- Further issues with PHP 5.3.
- Issue with lazy loaded post thumbnail in the backend.
Fixed
- Replaced [] array syntax with traditional one, so it works with PHP 5.3 again.
Fixed
- Wrong check for js class, which causes hidden images if nothing else added a js class…
Fixed
- Capital P for one »WordPress« in readme and one in plugin description.
Changed
- Added option to disable lazy loading for specific classes to readme.
Fixed
- Correct text domain.
Added
- Customizer option to specify image class names to disable lazy loading for those.
Changed
- Using semver.
- Make it work with AJAX requests (thanks to zitrusblau).
- Using classes and namespaces.
- Using SmartDomDocument class.
- Updated plugin URL.
- Doc improvements.
- Updated lazysizes to 3.0.0 (Thanks FlorianBrinkmann)
- Plugin version reflects version of lazysizes.
- Allow opting out of lazy load with "data-no-lazyload" attribute (Thanx wheresrhys)
- Bugfix for missing images if javascript is disabled.
- Added a check to prevent the plugin being applied multiple times on the same image. (Thanx to saxonycreative)
- added missing src attribute. Older browsers like the PS4 browser now work again.
- now prevents lazy loading in atom feeds and the WordPress backend.
- Changed description to reflect the compatibility with WordPress 4.4 core responsive images.
- Removed skipping of the first image in the post.
- Adds css class "js" to body tag for better compatibility.
- fixed path to js and css.
- typo in WordPress usernames.
Thanks to @mtoensing who created a W.org plugin from the code described in one of my posts and maintained it for the first 1,5 years.
And thanks to all contributors who helped with Pull Requests and/or opened Issues.