A slow website doesn’t just frustrate visitors — it costs you rankings, conversions, and credibility. Google uses page speed as a ranking factor, and studies show that even a one-second delay in load time can reduce conversions by up to 7%.
The good news? You don’t need to be a developer to make meaningful improvements. This guide walks you through the most effective ways to speed up your WordPress site.
What’s in This Guide
- Choose a Lightweight Theme
- Use a Caching Plugin
- Optimise Your Images
- Minify and Combine CSS and JavaScript
- Reduce Plugin Bloat
- Use a Content Delivery Network (CDN)
- Clean Up Your Database
- Enable GZIP or Brotli Compression
- Optimise Your Hosting Environment
- Reduce External HTTP Requests
- How to Measure Your Progress
1. Choose a Lightweight Theme
Your theme is the foundation of your site’s performance. Many premium themes are bloated with features you’ll never use — sliders, custom fonts, animations, and built-in page builders all add weight.
What to Do
- Choose a theme built with performance in mind. Block-based themes (designed for the WordPress Site Editor) tend to be leaner than traditional themes.
- Avoid themes that bundle dozens of third-party plugins or load multiple JavaScript libraries on every page.
- Test your theme’s speed on a fresh install before committing to it. Use Google PageSpeed Insights or GTmetrix to benchmark it.
2. Use a Caching Plugin
WordPress generates pages dynamically by querying the database and running PHP on every request. Caching stores a static version of your pages so the server doesn’t have to do all that work for every visitor.
Recommended Caching Plugins
- WP Super Cache — Simple and effective. A great starting point for beginners.
- W3 Total Cache — More configurable, with options for object caching, browser caching, and CDN integration.
- LiteSpeed Cache — If your hosting uses the LiteSpeed web server, this plugin offers server-level caching that’s extremely fast.
Key takeaway: Once installed, enable page caching at a minimum. Most plugins will also offer browser caching and GZIP compression — turn those on too.
3. Optimise Your Images
Images are typically the largest files on any web page. Unoptimised images are one of the most common reasons for a slow WordPress site.
What to Do
- Resize before uploading. There’s no reason to upload a 4000px-wide image if it’s only ever displayed at 800px. Resize images to the largest size they’ll actually be used at.
- Use modern formats. WebP and AVIF offer significantly better compression than JPEG and PNG with little to no quality loss. WordPress 6.x+ supports WebP natively.
- Use a compression plugin. Plugins like ShortPixel, Imagify, or Smush can automatically compress images on upload.
- Enable lazy loading. WordPress enables lazy loading by default for images and iframes, but check that your theme isn’t overriding this. Lazy loading ensures off-screen images are only loaded when a user scrolls to them.
4. Minify and Combine CSS and JavaScript
Every CSS and JavaScript file your site loads requires a separate HTTP request. Minifying removes unnecessary whitespace and comments from these files, while combining them reduces the total number of requests.
What to Do
- Autoptimize is a popular free plugin that handles minification and combination of CSS, JavaScript, and HTML.
- If you’re using W3 Total Cache or LiteSpeed Cache, these features are often built in — check the settings before installing an additional plugin.
Warning: After enabling minification, test your site thoroughly. Some JavaScript doesn’t work well when combined — most plugins let you exclude specific scripts that cause problems.
5. Reduce Plugin Bloat
Every active plugin adds PHP code, database queries, and potentially CSS and JavaScript to your site. The more plugins you have, the more work the server has to do.
What to Do
- Audit your plugins. Deactivate and delete anything you’re not actively using. Deactivated plugins don’t affect performance, but deleting them keeps things tidy and reduces security risk.
- Avoid duplication. Don’t install three SEO plugins or two security plugins. Pick one of each and stick with it.
- Check what each plugin loads. Use a plugin like Query Monitor to see which plugins are adding the most database queries, scripts, and styles to your pages.
- Replace plugins with code where practical. If a plugin does something simple (like adding Google Analytics), consider adding the snippet directly to your theme or using a code snippets plugin instead.
6. Use a Content Delivery Network (CDN)
A CDN stores copies of your static assets (images, CSS, JavaScript) on servers around the world. When someone visits your site, they receive those files from the nearest server rather than your origin server, reducing latency.
Popular CDN Options
- Cloudflare — Offers a generous free tier that includes CDN, DNS, and basic DDoS protection. One of the easiest to set up.
- Bunny.net — Pay-as-you-go CDN with competitive pricing and excellent performance across Europe and beyond.
- KeyCDN — Another affordable, developer-friendly option.
Most caching plugins include CDN integration, making setup straightforward.
7. Clean Up Your Database
Over time, your WordPress database accumulates overhead: post revisions, trashed items, spam comments, transient options, and orphaned metadata. A bloated database means slower queries.
What to Do
- Use WP-Optimize to clean up revisions, drafts, spam comments, and transient data with a few clicks.
- Schedule regular database optimisation through WP-Optimize or a similar plugin to keep things lean.
Tip: Limit stored post revisions by adding
define('WP_POST_REVISIONS', 5);to yourwp-config.phpfile. This keeps the last 5 revisions instead of storing every single one indefinitely.
8. Enable GZIP or Brotli Compression
Compression reduces the size of files sent from your server to the visitor’s browser. GZIP is widely supported; Brotli is a newer alternative that offers even better compression ratios.
What to Do
- Many caching plugins enable GZIP compression automatically.
- You can also enable it manually by adding rules to your
.htaccessfile (Apache) ornginx.conf(Nginx). Your hosting provider’s documentation will have specific instructions. - Test whether compression is working using GiftOfSpeed’s GZIP Test or the Network tab in your browser’s developer tools.
9. Optimise Your Hosting Environment
No amount of plugins and tweaks can fully compensate for underpowered hosting. Your server’s hardware, configuration, and PHP version all play a significant role in performance.
What to Check
- PHP version. Make sure you’re running PHP 8.1 or higher. Each major PHP release brings significant performance improvements. You can usually change your PHP version from your hosting control panel.
- Server resources. Shared hosting plans can be slow during peak times because you’re sharing CPU and memory with other sites. If your site has outgrown shared hosting, consider upgrading to a VPS or managed WordPress hosting plan.
- Server-side caching. Technologies like OPcache (for PHP) and Redis or Memcached (for object caching) can dramatically speed up WordPress. Check whether your hosting plan supports them.
- HTTP/2 or HTTP/3. These newer protocols allow browsers to load multiple resources simultaneously. Most modern hosting setups support HTTP/2 by default — check with your host if you’re unsure.
10. Reduce External HTTP Requests
Every external resource your site loads — Google Fonts, third-party analytics scripts, social media widgets, embedded videos — adds an HTTP request that your visitor’s browser has to wait for.
What to Do
- Self-host fonts. Instead of loading Google Fonts from Google’s servers, download them and host them locally. Plugins like OMGF (Optimize My Google Fonts) automate this.
- Limit embeds. Embedding YouTube videos, Twitter posts, and Instagram feeds all add external requests. Use them sparingly, and consider using a facade (a static image placeholder that loads the full embed only when clicked).
- Audit third-party scripts. Use your browser’s developer tools (Network tab) to see everything your site loads. Remove any third-party scripts you don’t genuinely need.
How to Measure Your Progress
Before making changes, benchmark your site so you can measure the impact. Use these free tools:
- Google PageSpeed Insights — Gives you a performance score out of 100 along with specific recommendations for both mobile and desktop.
- GTmetrix — Provides detailed waterfall charts showing exactly how long each resource takes to load.
- Pingdom Website Speed Test — A quick, straightforward tool for measuring page load time from different locations.
Key takeaway: Run these tests before and after each optimisation step. Focus on real-world metrics like Largest Contentful Paint (LCP), Interaction to Next Paint (INP), and Cumulative Layout Shift (CLS) — these are the Core Web Vitals that Google uses for ranking.
Final Thoughts
WordPress speed optimisation isn’t a one-off task — it’s an ongoing process. Start with the quick wins (caching, image optimisation, plugin audit), then work your way through the more involved changes.
Even small improvements add up, and your visitors, your search rankings, and your conversion rates will all benefit.
If you’re a Webfort customer and need help optimising your WordPress site, don’t hesitate to get in touch with our support team. We’re always happy to help you get the most out of your hosting.


[…] Your hosting should deliver at least 99.9% uptime. Look for providers using modern server technology like LiteSpeed, NVMe SSD storage, and proper server-level caching. These make a genuine difference to how fast your site loads. Slow hosting does not just frustrate visitors; it hurts your search rankings too. […]