=== Lazy Load by WP Rocket === Contributors: creativejuiz, tabrisrp, wp_media Tags: lazyload, lazy load, images, iframes, thumbnail, thumbnails, smiley, smilies, avatar, gravatar Requires at least: 3.0 Tested up to: 4.8.1 Stable tag: 1.3.3 The tiny Lazy Load script for WordPress without jQuery, works for images and iframes. == Description == Lazy Load displays images and/or iframes on a page only when they are visible to the user. This reduces the number of HTTP requests mechanism and improves the loading time. This plugin works on thumbnails, all images in a post content or in a widget text, avatars, smilies and iFrames. No JavaScript library such as jQuery is used and the script weight is less than 10KB. = Related Plugins = * Imagify: Best Image Optimizer to speed up your website with lighter images. * WP Rocket: Best caching plugin to speed-up your WordPress website. == Installation == 1. Upload the complete `rocket-lazy-load` folder to the `/wp-content/plugins/` directory 2. Activate the plugin through the 'Plugins' menu in WordPress == Frequently Asked Questions == = How can i deactivate Lazy Load on some pages? = You can use the `do_rocket_lazyload` filter. Here is an example to put in functions.php files that disable lazyload on posts: ` add_action( 'wp', 'deactivate_rocket_lazyload_on_single' ); function deactivate_rocket_lazyload_on_single() { if ( is_single() ) { add_filter( 'do_rocket_lazyload', '__return_false' ); } } ` = How can i deactivate Lazy Load on some images? = Simply add a `data-no-lazy="1"` property in you `img` or `iframe` tag. You can also use the filters `rocket_lazyload_excluded_attributes` or `rocket_lazyload_excluded_src` to exclude specific patterns. = I use plugin X and my images don't show anymore = Some plugins are not compatible without lazy loading. Please open a support thread, and we will see how we can solve the issue by excluding lazy loading for this plugin. == Changelog == = 1.3.3 = * 2017-09-16 * Prevent scripts and styles being removed during html parsing = 1.3.2 = * 2017-09-12 * Fix images not displaying in certain conditions because image attributes exclusion was not working correctly = 1.3.1 = * 2017-09-07 * Don't apply lazyload on Divi slider = 1.3 = * 2017-09-01 * Improve HTML parsing of images and iframes to be faster and more efficient * Make the lazyload compatible with fitVids for iframes * Don't apply lazyload on AMP pages (compatible with AMP plugin from Automattic) * Use about:blank as default iframe placeholder to prevent warning in browser console * Don't apply lazyload on upPrev thumbnail = 1.2.1 = * 2017-08-22 * Fix missing lazyload script * Don't lazyload for images in REST API requests = 1.2 = * 2017-08-22 * Update lazyload script to latest version * Change the way the script is loaded = 1.1.1 = * 2017-02-13 * Bug fix: Remove use of short tag to prevent 500 error on some installations = 1.1 = * 2017-02-12 * *New* * JS library updated * Support for iFrame * Support for srcset and sizes * New options page = 1.0.4 = * 2015-04-28 * Bug Fix: Resolved a conflict between LazyLoad & Emoji since WordPress 4.2 = 1.0.3 = * 2015-01-08 * Bug Fix: Don't apply LazyLoad on captcha from Really Simple CAPTCHA to prevent conflicts. = 1.0.2 = * 2014-12-28 * Improvement: Add « rocket_lazyload_html » filter to manage the output that will be printed. = 1.0.1.1 = * 2014-07-25 * Fix stupid error with new regex in 1.0.1 = 1.0.1 = * 2014-07-16 * Bug Fix: when a IMG tag or content (widget or post) contains the string "data-no-lazy", all IMG tags were ignored instead of one. * Security fix: The preg_replace() could lead to a XSS vuln, thanks to Alexander Concha * Code compliance = 1.0 = * 2014-01-01 * Initial release.