Core Web Vitals haven't gone away. If anything, they matter more in 2026 because Google replaced First Input Delay with Interaction to Next Paint (INP) in March 2024 — and INP is harder to pass than FID was. This is the checklist we run on every WordPress site we onboard.
The three metrics you actually care about
- LCP (Largest Contentful Paint) — how long until the biggest visible element appears. Target: under 2.5s.
- INP (Interaction to Next Paint) — how long the page takes to respond when a user taps or clicks. Target: under 200ms.
- CLS (Cumulative Layout Shift) — how much the page jumps around while loading. Target: under 0.1.
LCP — fixing slow first paint
- Identify your LCP element in PageSpeed Insights (usually the hero image or H1).
- If it's an image, add
fetchpriority="high"and preload it. - Convert it to WebP or AVIF. Serve it at the actual rendered size, not the original upload size.
- Defer or inline only the critical CSS needed above the fold.
- Remove render-blocking JavaScript above the fold — most WordPress themes load it for no reason.
INP — the metric that's catching sites off guard
INP measures every interaction, not just the first. The most common WordPress culprits:
- Heavy admin-ajax requests firing on user input (often from contact form plugins or live search).
- Third-party scripts running on the main thread — analytics, chat widgets, ad networks.
- Slider and animation libraries that rebind on every interaction.
Fix by deferring third-party scripts, replacing admin-ajax with REST endpoints where possible, and removing animation libraries that aren't actually used.
CLS — stop the layout from jumping
- Set explicit
widthandheighton every<img>tag. - Reserve space for ad slots and embeds before they load.
- Use
font-display: optionalorswapwith a matching fallback metric so swapping web fonts doesn't reflow text. - Avoid injecting cookie banners that push content down — overlay them instead.
How to actually measure it
Lighthouse runs in your browser and gives you lab data — synthetic conditions. The Core Web Vitals that affect ranking are field data — what real users experience. Use the CrUX report in Search Console or the Web Vitals Chrome extension for the real numbers.
Want it done for you?
Every Up Speed plan includes Core Web Vitals monitoring and quarterly optimization. Get a free site audit — we'll tell you exactly which of the three metrics is hurting your site and what it'll take to fix.