Performance: Featured images
HIGH IMPACT
Featured images impact page load speed and visual stability by affecting image size, loading behavior, and layout shifts.
<?php the_post_thumbnail('medium_large', ['decoding' => 'async']); ?>
<?php the_post_thumbnail('full'); ?>| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Full-size featured image without lazy loading | 1 image node | 1 reflow on image load | High paint cost due to large image | [X] Bad |
| Resized featured image with dimensions | 1 image node | 0 reflows after initial layout | Low paint cost with reserved space | [OK] Good |