When your WordPress site doesnβt show recent updates, caching is often the culprit. Cache helps speed up websites, but it can also store outdated versions of your pages. Hereβs how to find and clear every layer of cache β from your hosting server to plugins and browsers β so your latest changes appear instantly.
βοΈ Step-by-Step Instructions
βοΈ Step-by-Step Instructions
π’ Step 1: Check for Server-Level Caching
π’ Step 1: Check for Server-Level Caching
Most managed WordPress hosts automatically cache your website.
Look for caching controls directly in your hosting dashboard.
WP Engine β Caching β Clear All Caches
SiteGround β Speed β Dynamic Cache β Flush Cache
Bluehost β Performance β Caching β Purge All
If you donβt see these options, search your hosting help docs for βFlush Cacheβ or βClear Cache.β
π Step 2: Purge CDN Cache (Cloudflare or Similar)
π Step 2: Purge CDN Cache (Cloudflare or Similar)
If youβre using Cloudflare, Akamai, or another CDN service:
Log in to your CDN account.
Go to the Caching tab.
Click Purge Everything.
Wait a few seconds, then reload your site to confirm.
π Resource: Cloudflare Docs β Purge Cache
πΎ Step 3: Purge Object Cache (Redis / Memcached)
πΎ Step 3: Purge Object Cache (Redis / Memcached)
Many hosting providers use Redis or Memcached to store database query results for faster performance.
If youβre using one of these systems:
Go to WP Admin β Tools β Site Health β Info β Persistent Object Cache to confirm itβs active.
In your hosting control panel, look for Flush Object Cache or Clear Redis Cache.
On some platforms (like Kinsta, Cloudways, or RunCloud), this option appears directly on the site dashboard.
From the command line (WP-CLI), you can also run:
wp cache flush
π Resource: WordPress Developer Docs β Object Cache
π§ Step 4: Clear Browser or Local Cache
π§ Step 4: Clear Browser or Local Cache
Sometimes, the βstuckβ cache isnβt on your website β itβs in your browser.
Clear your browser cache and cookies.
Reload your site in Incognito/Private Mode to check the latest version.
Developers can use Chrome DevTools β Disable cache during testing.
π Resource: Google Chrome Help β Clear Cache & Cookies
π§° Step 5: Manual Cache Purge (As a Last Resort)
π§° Step 5: Manual Cache Purge (As a Last Resort)
If your cache plugin or host-level purge doesnβt work, you can clear it manually:
Access your site via FTP or your hosting File Manager.
Navigate to:
/wp-content/cache/
Delete all files and folders inside (but do not delete the main
/cache/
folder itself).
This forces WordPress to rebuild a fresh cache on the next page load.
π Resource: WordPress Advanced Admin β Cache
π Step 6: Clear Cache Using Popular Plugins
π Step 6: Clear Cache Using Popular Plugins
π§© WP Rocket
Go to Settings β WP Rocket β Dashboard.
Click Clear and Preload Cache.
Or, hover over the WP Rocket menu in your WordPress admin bar β choose Clear and Preload Cache.
Developers can purge cache programmatically with
rocket_clean_domain()
orrocket_clean_post()
.
π Resource: WP Rocket Official Docs
β‘ W3 Total Cache (W3TC)
β‘ W3 Total Cache (W3TC)
Navigate to Performance β Dashboard.
Click Empty All Caches.
Or use the admin bar β Performance β Purge All Caches.
Advanced users: run
wp w3-total-cache flush all
via WP-CLI.
π Resource: InMotion Hosting β W3 Total Cache Guide
π§Ή WP Super Cache
π§Ή WP Super Cache
Go to Settings β WP Super Cache.
Scroll to the Delete Cached Pages section.
Click Delete Cache to purge everything.
π Resource: Kinsta β WordPress Cache Guide
πͺ WP Fastest Cache
πͺ WP Fastest Cache
In your dashboard, open WP Fastest Cache β Delete Cache.
Click Delete Cache or Delete Cache + Minified CSS/JS if you changed styling or scripts.
π Resource: Hostinger Cache Tutorial
π₯ LiteSpeed Cache
π₯ LiteSpeed Cache
Go to LiteSpeed Cache β Toolbox.
Click Purge Entire Cache.
You can also clear CSS/JS or Object Cache individually if needed.
π Resource: SupportHost β Clear Cache Guide
π‘ FAQs
π‘ FAQs
β Do I need to clear all caches every time I make a change?
π‘ Not always. Most caching plugins and hosts auto-purge when you update a post, change your theme, or modify plugin settings.
β Whatβs the safest cache purge order?
βοΈ Always clear Hosting β CDN β Object Cache β Plugin Cache β Browser.
β My site still doesnβt update after clearing everything. What now?
π Check your CDN cache headers or try forcing a hard refresh (Ctrl + Shift + R
/ Cmd + Shift + R
).
β Closing Note
Clearing cache regularly keeps your website updated and ensures visitors see the latest version of your content. If your site still doesnβt reflect recent changes, contact your hosting support β they may need to purge server-level caches manually.
π Resources
π Resource: WordPress Developer Docs β Performance & Caching
π Resource: Cloudflare Docs β Purge Cache
π Resource: WP Rocket Official Documentation
π Resource: Kinsta WordPress Cache Guide
π Resource: Hostinger WordPress Cache Guide