Exclude Jetpack lazy loading by post ID, slug, or title if using Jetpack on your child site.
Snippet Type
Execute on Child Sites
Snippet
add_filter( 'lazyload_is_enabled', 'jp_lazyload_exclude', 15 );
function jp_lazyload_exclude() {
if ( is_page( array( 12, 'slug', 'Title' ) ) ) {
return false;
} else {
return true;
}
}