WordPress performance has a plugin graveyard – dozens of caching, optimisation and minification plugins that promised PageSpeed 100 and delivered a broken site. The reason most of them underperform is that they optimise the wrong things. They compress images that were already compressed, minify JavaScript that was already minimal, and enable settings that conflict with your theme’s rendering logic. Before reaching for another plugin, understand what Google is actually measuring.

Largest Contentful Paint (LCP) is how long it takes for the biggest visible element on your page to render – usually a hero image or H1. The single highest-impact improvement for LCP on most WordPress sites is adding a preload hint for the hero image: <link rel="preload" as="image" href="hero.webp">. Combined with converting images to WebP format and serving them via a CDN, LCP improvements of 40-60% are routine.

Cumulative Layout Shift (CLS) measures visual stability – how much the page jumps around as it loads. The most common cause on WordPress sites is images without explicit width and height attributes (the browser doesn’t know how much space to reserve), web fonts that swap in late (causing text to reflow), and ads or embeds injected after the initial render. Fix these at the theme level, not with a plugin.

Interaction to Next Paint (INP) replaced First Input Delay as a Core Web Vital in 2024. It measures how quickly the browser responds to user interactions – clicks, taps, key presses. Heavy JavaScript, large event listeners and render-blocking third-party scripts are the main culprits. Defer everything non-critical, audit your plugin JavaScript, and consider replacing JavaScript-heavy plugins (sliders, popups, chat widgets) with lighter alternatives.

On the server side: enable PHP OPcache, use a full-page caching plugin (WP Rocket, W3 Total Cache or LiteSpeed Cache depending on your stack), and enable HTTP/2 at the server or CDN level. If your host doesn’t support these, the speed ceiling is lower than it should be – and switching hosts is sometimes the single highest-impact performance improvement available.