How to disable the native WordPress lazy load function.
Paste the snippet below into your theme functions.php file:
/**
* Disable WordPress default image lazy load
**/
add_filter( 'wp_lazy_loading_enabled', '__return_false' );
For those wondering why I think most sites should disable image lazy load, read this:
Latest Guides
Improve WordPress backend Speed (wp-admin)
10 proper ways to mitigate your slow WP-admin backend. If you’re frustrated…
Why Google Pagespeed, Pingdom, and GTmetrix scores don’t matter
Stop listening to those silly page speed scores and tests (if you…
Step By Step Complete WordPress speed optimization Guide
130+ performance tips and WordPress Speed Optimization Guide to overcome your WordPress…
BEST WordPress Cache Plugins in 2024
The best cache plugins to speed up your WordPress sites and where…