惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
博客园_首页
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
小众软件
小众软件
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Recent Announcements
Recent Announcements
M
MIT News - Artificial intelligence
阮一峰的网络日志
阮一峰的网络日志
The GitHub Blog
The GitHub Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
7 things that actually move WordPress Core Web Vitals (wi...
Cambria Digital · 2026-06-01 · via DEV Community

Most advice for speeding up WordPress stops at "install a caching plugin." That helps, but it hides the work instead of doing it. I've built more than 100 WordPress sites, including a property platform that serves 300+ auto-imported listings and still loads in under two seconds. These are the changes that actually made a difference, with the code to go with them.

No plugin shopping list. Just the parts that matter.

The short version

  • Ship less CSS and JS by removing what the page doesn't use
  • Self-host your fonts, use font-display: swap, and preload the one that matters
  • Put width and height on every image so nothing jumps around
  • Add fetchpriority="high" to the LCP image and loading="lazy" to images below the fold
  • Defer the scripts that don't need to run right away
  • Use a persistent object cache and fix N+1 queries
  • Judge yourself on field data (CrUX and INP), not just a Lighthouse score

1. Stop shipping CSS and JS the page never uses

This is the biggest win on most themes. WordPress and its plugins load everything on every page, whether the page needs it or not. Trim it per template:

add_action('wp_enqueue_scripts', function () {
    // Example: drop block-library CSS on a template that uses no blocks
    if (is_page_template('landing.php')) {
        wp_dequeue_style('wp-block-library');
        wp_dequeue_style('classic-theme-styles');
    }
}, 100);

Enter fullscreen mode Exit fullscreen mode

Open the Coverage tab in Chrome DevTools and look at how much of each file is unused on a given page. If 70% of a stylesheet does nothing there, that's render-blocking weight you're paying for and getting nothing back.

2. Self-host your fonts and preload the important one

Loading fonts from Google means an extra connection and a request that can block rendering. Host them yourself, set swap, and preload only the weight you actually use above the fold:

<link rel="preload" href="/fonts/dm-sans-latin.woff2" as="font" type="font/woff2" crossorigin>

Enter fullscreen mode Exit fullscreen mode

@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dm-sans-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

Enter fullscreen mode Exit fullscreen mode

font-display: swap gets rid of the moment where text is invisible while the font loads. If your largest element is text, that moment is hurting your LCP.

3. Set width and height on every image

Every image, and embeds too. When you give the browser the dimensions, it reserves the space before the file arrives, so the page doesn't shift while things load:

<img src="/img/hero.webp" width="1200" height="630" alt="...">

Enter fullscreen mode Exit fullscreen mode

This one pair of attributes fixes most of the layout shift that people usually blame on ads or fonts.

4. Prioritise the LCP image and lazy-load the rest

Your hero image is often the largest thing on screen, so it's your LCP element. Tell the browser it matters, and do not lazy-load it. Lazy-loading the LCP image is one of the most common mistakes I see:

<!-- Above the fold: the LCP image -->
<img src="/img/hero.webp" width="1200" height="630"
     fetchpriority="high" decoding="async" alt="...">

<!-- Below the fold -->
<img src="/img/section.webp" width="800" height="500"
     loading="lazy" decoding="async" alt="...">

Enter fullscreen mode Exit fullscreen mode

5. Defer the JavaScript that doesn't need to block

Most theme scripts don't have to run before the page renders. Add defer instead of dropping everything in the head:

add_filter('script_loader_tag', function ($tag, $handle) {
    $defer = ['theme-main', 'carousel'];
    return in_array($handle, $defer, true)
        ? str_replace(' src', ' defer src', $tag)
        : $tag;
}, 10, 2);

Enter fullscreen mode Exit fullscreen mode

Ship a small critical bundle and defer the rest. You'll usually see INP improve once the main thread isn't blocked while the page loads.

6. Use a persistent object cache and fix N+1 queries

TTFB feeds into LCP. A persistent object cache (Redis or Memcached) stops WordPress from re-running the same queries on every request. And in custom loops, fetch your data once instead of querying inside the loop:

// N+1: one meta query per post, which gets slow fast
foreach ($ids as $id) {
    $price = get_post_meta($id, 'price', true);
}

// Better: warm the cache once, then read from memory
update_meta_cache('post', $ids);
foreach ($ids as $id) {
    $price = get_post_meta($id, 'price', true); // served from cache now
}

Enter fullscreen mode Exit fullscreen mode

7. Measure the thing your users actually feel

Lighthouse is a lab test on one simulated phone. Real visitors are field data. Watch INP (the metric that replaced FID), along with LCP and CLS, in CrUX and Search Console, and fix what people actually hit. A perfect Lighthouse score with bad field INP still means a slow site for the people using it.

So why not just use a page builder?

Builders are quick to start with and slow to live with: nested divs, a stack of separate stylesheets, and JavaScript you can't fully remove. For a marketing site where speed is part of the point, hand-written templates win on every metric above. For a quick internal tool, a builder is fine. Pick the right one for the job.


Written by the team at Cambria Digital, a Cardiff-based studio that hand-codes WordPress sites and web apps. Happy to talk through Core Web Vitals in the comments.