How to Optimize WordPress Core Web Vitals (2026)
Improve WordPress Core Web Vitals scores for better Google rankings. Fix LCP, INP, and CLS issues with practical steps, plugin recommendations, and hosting tips.
How to Optimize WordPress Core Web Vitals
Google's Core Web Vitals are performance metrics that directly influence search rankings. Three metrics matter most: Largest Contentful Paint (LCP), Interaction to Next Paint (INP), and Cumulative Layout Shift (CLS).
Understanding the Three Metrics
- LCP (Largest Contentful Paint): Time to load the largest visible content element. Target: under 2.5 seconds. Usually the hero image or H1 text.
- INP (Interaction to Next Paint): Response time to user interactions. Target: under 200ms. Affected by heavy JavaScript.
- CLS (Cumulative Layout Shift): Visual stability — how much elements shift during load. Target: under 0.1. Caused by images without dimensions, late-loading ads, and web fonts.
Diagnose Your Current Scores
Check your scores at pagespeed.web.dev. Use the Field Data (real user data from Chrome) not just Lab Data. Google Search Console's Core Web Vitals report shows which URLs need attention.
Fix LCP
- Add
fetchpriority="high"to your hero image tag - Preload critical images:
<link rel="preload" as="image" href="hero.webp"> - Convert images to WebP format (smaller file size, same quality)
- Use SiteICO's FrankenPHP hosting — faster server response time directly improves LCP
- Enable server-side caching to reduce Time to First Byte
Fix INP
- Audit third-party scripts — remove any you don't actively need
- Defer non-critical JavaScript with the
deferattribute - Use WP Rocket's JavaScript delay feature to load scripts after user interaction
Fix CLS
- Always specify width and height attributes on images:
<img width="800" height="450"> - Add
font-display: swapto Google Fonts to prevent invisible text during font load - Set explicit dimensions on ad containers
- Avoid inserting content above existing content after load
Plugin Recommendations
WP Rocket addresses most CWV issues automatically. Imagify or ShortPixel handles WebP conversion. Perfmatters helps disable unnecessary WordPress features that load extra scripts.
Ready to get started? Try SiteICO free.
Start FreeStart building with SiteICO
Deploy your WordPress site in under 1 second. Follow our guides to get the most out of the platform.
No credit card required.