Skip to content

Instantly share code, notes, and snippets.

@htdat
Last active May 4, 2020 07:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save htdat/53c0821a6cbdff2dce18df3140f78ede to your computer and use it in GitHub Desktop.
Save htdat/53c0821a6cbdff2dce18df3140f78ede to your computer and use it in GitHub Desktop.
<?php
add_filter( 'lazyload_is_enabled', 'htdat_disable_lazy_load_homepage', 15 );
function htdat_disable_lazy_load_homepage() {
if ( is_front_page() ) {
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment