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
14 Tools We Use to Audit Performance of a WordPress site
Performance is not just about “my site loads under x seconds”. There…
Improve WordPress Security
There are some simple tweaks you can do to prevent some popular…
Long Tail Keywords
Learn what long-tail keywords are, how to find them and how to…
Disable WP-Cron and use real CRON JOB
Use a real cron job instead of the default WordPress WP-Cron (for…
