Performance: General settings
MEDIUM IMPACT
General settings in WordPress affect site-wide performance aspects like caching, image optimization, and script loading which impact page load speed and responsiveness.
Enable caching plugin like WP Super Cache or use built-in cachingNo caching plugin or caching disabled in settings
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| No caching | High (dynamic content on each load) | Multiple reflows per page load | High paint cost due to slow HTML delivery | [X] Bad |
| Caching enabled | Low (static HTML served) | Single reflow | Low paint cost with fast HTML | [OK] Good |
| All scripts loaded upfront | Medium (many scripts parsed) | Multiple reflows if scripts modify DOM | Medium paint cost | [!] OK |
| Selective script loading | Low (only needed scripts) | Single reflow | Low paint cost | [OK] Good |
| Large uncompressed images | N/A | N/A | High paint cost due to large images | [X] Bad |
| Compressed and lazy loaded images | N/A | N/A | Low paint cost, deferred loading | [OK] Good |