All articles
Technical SEO20 June 2026·9 min read

Core Web Vitals 2026: What Still Matters and What Google Has Moved On From

Three years after Core Web Vitals became a ranking signal, a clearer picture has emerged of which metrics genuinely move rankings and which are measurement artefacts.

Core Web Vitals 2026: What Still Matters and What Google Has Moved On From

Core Web Vitals were introduced as a Google ranking signal in mid-2021 with enormous industry attention. Page Experience signals, the framework that CWV sits within, promised to reward fast, stable, and interactive pages. Three years on, the picture is more nuanced than the initial announcements suggested. Not all Core Web Vitals are equal in their ranking impact, and the arrival of the Interaction to Next Paint (INP) metric has shifted the technical SEO focus in significant ways.

The Current CWV Trio: LCP, INP, and CLS

Largest Contentful Paint (LCP)

LCP measures how quickly the largest visible content element on the page loads — typically a hero image or large text block. It is the Core Web Vital most consistently correlated with ranking improvements in controlled tests and industry studies. Pages that move LCP from 'Needs Improvement' (2.5–4s) to 'Good' (under 2.5s) reliably see ranking and traffic lifts in competitive niches.

The primary LCP improvements available to most sites are: serving images in next-gen formats (WebP, AVIF), implementing proper lazy loading (with the hero image excluded from lazy loading), using a CDN for static assets, and ensuring LCP elements are server-rendered rather than client-rendered. For WordPress and Next.js sites, these are largely configuration changes rather than deep engineering work.

Interaction to Next Paint (INP)

INP replaced First Input Delay (FID) as a Core Web Vital in March 2024. While FID measured the delay before a browser could begin processing the first user interaction, INP measures the full latency of all interactions — click, keypress, and tap — throughout the entire page lifecycle. INP is a significantly more demanding metric and reflects the real-world experience of interactive pages.

Poor INP scores are most common on pages with heavy JavaScript execution — third-party tag managers, ad scripts, complex web applications. The fixes are generally more technical: code splitting, reducing JavaScript bundle size, moving long tasks off the main thread using web workers, and deferring non-critical third-party scripts.

Cumulative Layout Shift (CLS)

CLS measures visual stability — how much page elements shift around as the page loads. A low CLS score means the page looks stable and content doesn't jump as images, ads, and fonts load. CLS improvements are typically the quickest wins: always specify explicit width and height attributes on images and video elements, reserve space for ads and dynamic content, and avoid inserting content above existing content except in response to user interaction.

The Ranking Signal Reality

Google has been clear that Core Web Vitals are a tiebreaker signal — they influence rankings when content quality, relevance, and authority are roughly equal between competing pages. For most competitive queries, improving CWV alone will not overcome significant content or authority deficits. However, for sites already performing well on content signals, moving from 'Needs Improvement' to 'Good' on CWV consistently delivers 5–15% organic traffic improvements based on industry data.

Tools for CWV Measurement and Diagnostics

  • Google Search Console: Core Web Vitals report shows field data (real user data) at page group level
  • PageSpeed Insights: combines lab data (Lighthouse) and field data for individual URLs
  • Chrome UX Report (CrUX): origin-level field data accessible via BigQuery for trend analysis
  • Web Vitals Chrome extension: real-time CWV measurement in the browser for individual pages
  • Cloudflare Observatory and Vercel Speed Insights: platform-integrated CWV monitoring

Prioritising Technical SEO Investments

A mistake I see frequently in technical SEO audits is treating CWV as the primary priority when the bigger opportunity lies elsewhere. For most sites, fixing indexation issues, improving crawl efficiency, resolving canonicalisation problems, or addressing site architecture deficiencies will generate more organic traffic improvement than CWV work. CWV should be addressed after these structural issues are resolved — not instead of them.