Core Web Vitals
Quick Definition
Core Web Vitals are three Google metrics that measure your website's real-world user experience: loading speed (LCP), interactivity (INP), and visual stability (CLS). They are a confirmed Google ranking factor.

What Are Core Web Vitals?
Core Web Vitals are a set of three specific metrics that Google uses to measure how users experience your website. They were introduced as a ranking factor in June 2021 and remain a confirmed part of Google's page experience signals in 2026. Google evaluates these metrics using real-world data from Chrome users (called field data), measured at the 75th percentile — meaning 75% of your visitors need to have a good experience for your site to pass.
The Three Metrics
| Metric | Measures | Good | Needs Work | Poor |
|---|---|---|---|---|
| LCP (Largest Contentful Paint) | Loading speed | ≤ 2.5s | 2.5–4.0s | > 4.0s |
| INP (Interaction to Next Paint) | Responsiveness | ≤ 200ms | 200–500ms | > 500ms |
| CLS (Cumulative Layout Shift) | Visual stability | ≤ 0.1 | 0.1–0.25 | > 0.25 |
- LCP (Largest Contentful Paint) — How fast the main content of your page loads. This is usually your hero image, featured image, or the largest text block. Target: under 2.5 seconds. Fix it by optimizing images, using a CDN, and enabling server-level caching.
- INP (Interaction to Next Paint) — How quickly your page responds when a user clicks a button, taps a link, or types in a form. Replaced the old FID metric in March 2024. Target: under 200 milliseconds. In 2026, 43% of websites still fail this metric. Fix it by reducing JavaScript, deferring non-critical scripts, and minimizing third-party code.
- CLS (Cumulative Layout Shift) — How much your page layout jumps around as it loads. You know that annoying thing when you are about to click a link and the page shifts, making you click the wrong thing? That is a layout shift. Target: under 0.1. Fix it by setting explicit width and height on images, reserving space for ads, and loading fonts properly.
How to Check Your Scores
You can test your WordPress site's Core Web Vitals using:
- Google PageSpeed Insights (pagespeed.web.dev) — Shows both lab data and real-user field data.
- Google Search Console — The Core Web Vitals report shows which pages pass, need improvement, or fail across your entire site.
- Chrome DevTools — The Performance tab lets you simulate and debug specific metrics.
Why It Matters
Core Web Vitals are not the most important ranking factor — content relevance and backlinks matter more. But they act as a tiebreaker: when two pages have similar content quality and authority, the one with better Core Web Vitals wins. For competitive keywords, that edge can mean the difference between position three and position eight. More importantly, fast and stable pages simply provide a better experience — visitors stay longer, bounce less, and convert more.
Sources: web.dev — Web Vitals, Google Search Central — Core Web Vitals, web.dev — Learn Core Web Vitals