L
by Automattic
4 (53 reviews)
Lazy Load
Lazy load images to improve page load times and server bandwidth. Images are loaded only when visible to the user.
Tested up to WP 5 (Current: 6.9.4)
v0.6.1
Current Version v0.6.1
Updated 7 years ago
Last Update on 22 Nov, 2018
Refreshed 6 hours ago
Last Refreshed on
Rank
#1,466
+2 this week
Active Installs
20K+
-4.2%
KW Avg Position
72
-0.5 better
Downloads
516.4K
+14 today
Support Resolved
0%
—
No change
Rating
80%
Review 4 out of 5
4
(53 reviews)
Next Milestone 30K
20K+
30K+
344
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 9,477 more installs to reach 30K+
Rank Changes
Current
#1,466
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
4.0
53 reviews
Overall
80%
5
35
(66%)
4
3
(6%)
3
2
(4%)
2
4
(8%)
1
9
(17%)
Tracked Keywords
Showing 2 of 2| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| front-end optimization | 45 | — | Tag | 6 hours ago |
| lazy load | 99 | — | Tag | 6 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 0.6.1
- Last Updated
- Nov 22, 2018
- Requires WP
- 3.2+
- Tested Up To
- 5
- PHP Version
- N/A
- Author
- Automattic
Support & Rating
- Rating
- ★ ★ ★ ★ ☆ 4
- Reviews
- 53
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,716
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#953
Firelight Lightbox
200K+ installs
#257
Performance Lab
200K+ installs
#279
Photo Gallery by 10Web – Mobile-Friendly Image Gallery
200K+ installs
#280
Frequently Asked Questions
Common questions about Lazy Load
add_filter( 'lazyload_images_placeholder_image', 'my_custom_lazyload_placeholder_image' ); function my_custom_lazyload_placeholder_image( $image ) { return 'http://url/to/image'; }
You can use the lazyload_images_add_placeholders helper function: if ( function_exists( 'lazyload_images_add_placeholders' ) ) $content = lazyload_images_add_placeholders( $content ); Or, you can add an attribute called "data-lazy-src" with the source of the image URL and set the actual image URL to a transparent 1x1 pixel. You can also use output buffering, though this isn't recommended: if ( function_exists( 'lazyload_images_add_placeholders' ) ) ob_start( 'lazyload_images_add_placeholders' ); This will lazy load all your images.