Core Web Vitals are still a ranking factor in 2026, and with INP replacing FID, more sites are failing than ever. Here is exactly how to pass CWV on the three platforms we work on most.
- •INP under 200ms is the new bar for interactivity.
- •LCP wins come from image optimization and font preloading.
- •CLS is almost always fixed with explicit width and height on media.
- •Third party scripts are the single biggest CWV killer.
What are Core Web Vitals in 2026?
Three metrics: Largest Contentful Paint (LCP) should be under 2.5 seconds, Interaction to Next Paint (INP) under 200 milliseconds, and Cumulative Layout Shift (CLS) under 0.1. INP replaced First Input Delay in early 2024 and is now the toughest one to pass.
How do I improve LCP?
Serve the hero image as a properly sized WebP or AVIF, preload it, and ensure your server responds in under 600ms. Eliminate render blocking CSS and preload your primary font.
How do I fix INP issues?
Break up long JavaScript tasks, defer non critical scripts, and audit third party tags. Heavy chat widgets, A B testing scripts, and analytics stacks are usually the biggest INP killers.
How do I eliminate CLS?
Set explicit width and height on every image, video, and embed. Reserve space for ads and dynamic content. Avoid inserting content above existing content after page load.
Frequently asked questions
Do Core Web Vitals affect rankings?
Yes, as part of Google's page experience signals. They rarely decide rankings on their own, but they are tiebreakers in competitive niches and they directly affect conversion.
Which platform has the worst CWV by default?
WordPress with heavy themes and plugin stacks. Shopify performs reasonably out of the box. Next.js performs best when configured correctly.
How often should I audit Core Web Vitals?
Monthly, plus after any major release. Use real user data from Search Console, not just lab scores from PageSpeed Insights.
