Skip to content

Instantly share code, notes, and snippets.

@emulsion-io
Created April 30, 2020 16:57
Show Gist options
  • Save emulsion-io/a0be9548b20aec247c1e84405625abf2 to your computer and use it in GitHub Desktop.
Save emulsion-io/a0be9548b20aec247c1e84405625abf2 to your computer and use it in GitHub Desktop.
add attr lazyload functions.php wordpress
function add_loading_lazy_to_images($attr) {
$attr['loading'] = 'lazy';
return $attr;
}
add_filter( 'wp_get_attachment_image_attributes', 'add_loading_lazy_to_images');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment