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
Managed VPS vs Unmanaged VPS
What managed VPS does is give you a pre-tuned hosting environment that fits…
Recovering from a HACKED web server (Linux)
Comprehensive guide on how to recover from server attacks (whether inbound or…
Best WordPress Pagebuilders Review – UPDATED 2022
A list of my favorite pagebuilders and why. I also include a list…
12 Ways To Reduce Total Blocking Time In WordPress -PSI
Need to reduce your total blocking time in WordPress? Total blocking time is caused…