<?php //===LCP Optimierung Startseite:Bild-ID 37082===// Attribute fürs LCP-Bild setzen add_filter('wp_get_attachment_image_attributes',function($attr,$attachment,$size){if ((int)$attachment->ID===37082){$attr['loading']='eager';$attr['decoding']='async';$attr['fetchpriority']='high';$attr['sizes']='(max-width:480px) 360px, (max-width:768px) 480px, 640px'}return $attr},10,3);// Preload des tatsächlich genutzten Derivats (nur Startseite) add_action('wp_head',function (){if (!is_front_page()) return;$id=37082;$src=wp_get_attachment_image_src($id,'medium_large');// ggf. 'medium' wählen,wenn du das in Elementor gesetzt hast $srcset=wp_get_attachment_image_srcset($id,'medium_large');if ($src){$sizes='(max-width:480px) 360px, (max-width:768px) 480px, 640px';printf('<link rel="preload" as="image" href="%s" imagesrcset="%s" imagesizes="%s" fetchpriority="high" />' . "\n",esc_url(../../../../../../themes/hello-elementor-child/$src[0]),esc_attr($srcset ?:''),esc_attr($sizes))}},1);