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
How to optimize for Google Pagespeed, Pingdom, and GTmetrix
Learn how to optimize your website for the popular page speed tests!…
How to Serve WebP Format Images in WordPress
WebP is a modern format for serving images faster than ever. If you…
Long Tail Keywords
Learn what long-tail keywords are, how to find them and how to…
How To Speed Up & Optimize WordPress database connection
In this post, we’re going to break down and share how we…