Attachment Non-Featured Image Load Attributes ( wp_get_attachment_image_attributes )
add_filter( ‘wp_get_attachment_image_attributes’, ‘adjust_load_attributes’, 10, 3 ); function adjust_load_attributes( $attributes, $attachment, $size ) { if ( isset( $attributes[‘class’] ) && strpos( $attributes[‘class’], ‘fetch-high’ ) !== false ) { $attributes[‘fetchpriority’] = ‘high’; $attributes[‘loading’] = ‘eager’; } return $attributes; }Continue reading