Why Your WordPress Site Loads Slowly (And the 5-Minute Audit to Find Out)

// 2026-08-16 · WordPress Engineering · 4 min read · by Douglas Gorden Jr, Gorden Web Design

Why Your WordPress Site Loads Slowly (And the 5-Minute Audit to Find Out)

Most slow WordPress sites are not slow because WordPress is slow. They are slow because of three specific things, in roughly this order: too many plugins, an underpowered hosting tier, and unconfigured caching. Here is how to tell which one is killing your site in about five minutes.

The 5-minute audit

Minute 1: Plugin count

Open Plugins › Installed Plugins. Count. Anything over 25 active plugins is suspect. Over 40 is a problem. The single biggest cause of slow WordPress admin and slow page loads is plugin count — even with caching, every plugin adds PHP execution time on every page load.

Minute 2: Page size in DevTools

Open your site, hit F12, go to the Network tab, hard-reload. Look at the bottom-right: total transferred size and total requests. A well-built WordPress page is under 1MB and under 30 requests. If you are over 3MB or over 80 requests, that is your culprit.

Minute 3: Time to First Byte

Same DevTools panel — look at the “TTFB” column. Under 200ms is great. Over 600ms is bad. Over 1.2 seconds means your host is the problem and you cannot fix it with plugins. Time to upgrade.

Minute 4: Check if caching is on

On Hostinger and LiteSpeed, look for the LiteSpeed Cache plugin and confirm it is enabled with default settings. On other hosts, check for WP Super Cache, W3 Total Cache, or whatever the host recommends. If nothing is caching — that is your problem, and the plugin will fix it for you.

Minute 5: Image audit

Go to Media › Library. Sort by file size. If any image is over 500KB, that is hurting you. Resize, recompress (ShortPixel or Imagify are good), and re-upload. WebP format if your theme supports it.

What I usually find

Across the 50-plus WordPress sites I have audited in the last two years, the most common pattern is plugins and missing image optimization, which together account for 80% of the speed problems I see. The fix is rarely “switch hosts” — it is almost always “remove 15 plugins and re-compress the hero image.”

When to actually switch hosts

If your TTFB is over 1 second with caching enabled and plugins trimmed, your host is the bottleneck. Time to move. I recommend Hostinger (LiteSpeed-powered shared and managed) for sites under 100k monthly visits.

More from Gorden Web Design