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
Best WordPress Plugins in 2024
My favorite WordPress plugins (and also HIGHLY RECOMMENDED by experienced WordPress developers)…
Increase your Google AdSense earnings
Follow these tips to increase your Google AdSense earnings without taking any…
How to Get AdSense Approval
In this guide, you’ll learn how to get approved by Google Adsense…
Disable WP-Cron and use real CRON JOB
Use a real cron job instead of the default WordPress WP-Cron (for…
