Super Page Cache – Cloudflare Cache, Page Speed & Core Web Vitals
Super Page Cache is a powerful full page cache plugin for WordPress that caches static files (CSS, JS, images) and HTML webpages at both server disk-level and the global Cloudflare CDN. Get enterprise-level performance with zero configuration required. Super Page Cache improves site speed by enabling server-side caching, cache preloading, local Google Fonts, and removing unused CSS and JavaScript, boosting Core Web Vitals and load times. Works right out of the box with or without Cloudflare. Powerful disk caching saves files locally on your server. To use Cloudflare CDN, just enter your API Key or Token. The intuitive dashboard includes detailed settings and built-in documentation, though most users won’t need to change the defaults. ⚡ Quick Links Documentation → Complete setup and configuration guide Support Forum → Community help and expert support YouTube Videos → Step-by-step visual guides for every feature Go Pro → Advanced features and priority support 🚀 How Does The Plugin Work? Disk Caching (Works Without Cloudflare): Server-level caching saves HTML pages and static files directly to your server, loading pages instantly without any CDN. Cloudflare CDN (Optional): Connect your Cloudflare account to leverage 200+ edge locations using modern Cache Rules. Works with FREE Cloudflare Plan – no paid account required. Achieve higher Pingdom and GTmetrix scores with edge delivery. Supports Free, Pro, and Enterprise Cloudflare plans with auto-purging, cron jobs, and integrated metrics. 🔥 Core Features (Free Version) 🚀 Complete Caching Solution Disk Caching: Lightning-fast server caching with Cloudflare fallback CDN Integration: Optional Cloudflare CDN with 200+ edge locations Cache Controls: Exclude cookies, query params, URIs, AMP, feeds, REST API Cache Lifespan: Custom expiration or never-expire settings Header Management: Preserve critical response headers Cache Buster: Logged-in users never see cached content Performance Metrics: Track cache effectiveness ⚡ Performance Optimization Google Fonts: Combine and serve locally for better Web Vitals Lazy Loading: Images, videos, iframes, background images Lazy Load Exclusions: By keywords, URL patterns, or CSS classes Assets Manager: Enable/disable CSS/JS per page Browser Caching: Auto-configure .htaccess rules These performance features cover CSS, caching, lazy loading, and browser caching to keep every page fast. 🛠️ Advanced Cache Management Auto-Purging: Clear cache on content updates including related pages Granular Purge: HTML only or entire cache with assets Preloader: From sitemaps, menus, or recent posts (manual/CRON) Background Processing: Uses Action Scheduler Queue-Based Purging: Prevent server overload Backend Bypass: Prevent admin dashboard caching Per-Page Control: Exclude via editor metabox Toolbar Purging: Instant purge from WP toolbar 🔧 Developer & Power User Features Redesigned Dashboard: Intuitive navigation with grouped settings Built-in Documentation: Tips within the dashboard Cache Backends: advanced-cache.php or cURL-based Defer JS Filter: spc_defer_script to exclude scripts Role Permissions: Control who can purge cache Cloudflare API: All plans via API Key or Token Export/Import: Settings as JSON Preserve on Deactivation: Retain settings for staging 🗄️ Database Optimization Database Cleanup: Remove revisions, auto-drafts, trash, spam, transients Scheduled Maintenance: Daily, weekly, or monthly Table Optimization: SQL OPTIMIZE TABLE for defragmentation Selective Cleanup: Choose which data types to clean One-click database optimization helps clean database clutter and improve performance. 🌐 Universal Compatibility Premium Hosts: Kinsta, WP Engine, SpinupWP, and more eCommerce: WooCommerce, Easy Digital Downloads Server Caches: Varnish, OPcache auto-purge Prefetch: Internal links via Instant.page 💎 Super Page Cache PRO with Advanced Performance Features Ignore Marketing Parameters: Better cache hit rate (UTM, affiliate, tracking codes) Defer JavaScript: Eliminate render-blocking JS. Learn more Delay JavaScript: Load JS on interaction only. Learn more Advanced Lazy Loading: Viewport detection, above-the-fold optimization Advanced Exclusions: Exclude specific JS/pages from caching Priority Support: Faster email response times Upgrade to Pro 🎯 Usage Note Disable page caching in other plugins (WP Rocket, LiteSpeed Cache, W3 Total Cache). Safe to use alongside Optimole, Autoptimize, Perfmatters, ShortPixel for asset optimization. ⭐ What Users Say ★★★★★ “Response times dropped from 400ms+ to below 200ms. Almost the same as my static S3 site—using the free version!” – @jurijs0 ★★★★★ “A game-changer for our website’s performance! Noticeable improvement in loading times, boosted engagement and SEO.” – @brandnexusstudios Leave a review | Follow us on Twitter | YouTube Super Page Cache is backed by Themeisle, powering 1M+ WordPress sites with 450+ five-star Trustpilot ratings.
Top keywords
- cache19×2.81%
- caching13×1.92%
- cloudflare11×1.63%
- page9×1.33%
- performance7×1.04%
- cdn6×0.89%
- js6×0.89%
- optimization6×0.89%
- server6×0.89%
- advanced5×0.74%
- css5×0.74%
- loading5×0.74%
WP Performance
WP Performance makes your WordPress site load faster without the headache. Turn on a few options and the plugin handles caching, asset optimization, and image delivery for you. Not sure where to start? Open the Overview tab and pick a one-click preset (Safe, Balanced, or Aggressive). You can fine-tune anything afterwards. Version 2.0 is a complete rebuild with a fast new dashboard and no third-party dependencies. Everything below works together out of the box. Caching Page cache – serves a static HTML copy of each page, before WordPress even loads Block cache – cache just the slow parts of a page, even on pages you can’t fully cache (more below) Cache preloading – warm the cache from your sitemap Browser caching – tells browsers to keep files so repeat visits are instant GZIP compression – sends smaller files to the browser Object cache – optional Redis drop-in to cut database load Smart by default – skips logged-in users and WooCommerce/EDD cart pages, and ignores tracking parameters (utm, gclid, fbclid) so clean URLs share one cache Mobile cache – keep a separate copy for mobile devices when you need it CSS Minify CSS (inline and files) Combine CSS files Load CSS without blocking the page Remove unused CSS, per page Critical CSS Combine Google Fonts, or host them on your own server Control font loading (font-display) DNS prefetch and preconnect hints JavaScript Minify JavaScript (inline and files) Combine JavaScript files Defer JavaScript Delay JavaScript until the visitor interacts (great for third-party scripts) Disable scripts you don’t need, site-wide or per page HTML Minify HTML Remove comments and unneeded markup Images and media Lazy load images and videos (uses native browser lazy loading) Responsive images Add missing width and height to stop layout shift (better CLS) Preload your largest image and set fetchpriority for a faster LCP Convert images to WebP and AVIF Custom image sizes and one-click thumbnail regeneration Disable emojis and embeds Database Clean up revisions, auto-drafts, trash, spam, transients, and stale cron tasks Schedule cleanups daily, weekly, or monthly CDN Rewrite asset URLs to your CDN, with exclusions Tools Overview dashboard with environment health checks One-click presets – Safe, Balanced, Aggressive Restore points – roll back to your last five saved configurations Troubleshooting log with a live viewer Export and import your settings Per-page exclusions from the post editor WP-CLI commands Multisite support Block cache Block cache stores the rendered output of a section of a page and reuses it, even on pages that are not fully cached (like logged-in or dynamic pages). Use it three ways: Cache block – add the “Cache” block in the editor and put any blocks inside it Shortcode – [wpp_cache ttl="600"]...[/wpp_cache] PHP – in a template: if ( wpp_cache_start( ‘sidebar’, [ ‘ttl’ => 3600 ] ) ) { expensive_render(); wpp_cache_end(); } You choose how long to cache and whether to keep a separate copy per page, per device, per role, or for logged-in visitors. Add-ons Cloudflare – purge cache and control Cloudflare settings Varnish – auto-purge Varnish cache Prefetch – prefetch links on hover for instant navigation WP-CLI wp wpp flush – clear the page cache wp wpp flush-blocks – clear the block cache wp wpp enable – enable WP Performance wp wpp disable – temporarily disable WP Performance wp wpp cleanup [ ] – run a database cleanup (all, trash, spam, revisions, autodrafts, transients, cron) Languages English Hrvatski (Croatian) Report bugs Found a bug? Please open an issue on GitHub.