Disable lazy load for featured images
unknown
php
3 years ago
267 B
8
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...