Disable lazy load for featured images

 avatar
unknown
php
2 years ago
267 B
6
Indexable
function disable_lazy_load_featured_images($attr, $attachment = null) {

  if (is_single()) {

    $attr[‘loading’] = ‘eager’;

  }

  return $attr;

}

add_filter(‘wp_get_attachment_image_attributes’, ‘disable_lazy_load_featured_images’);
Editor is loading...