by Derick Schaefer
1 (0 reviews)
Static Cache Wrangler
Export your WordPress site as a static HTML website — fast, secure, and offline-ready with WP-CLI support.
Compatible with WP 6.9
v2.1.4
Current Version v2.1.4
Updated 1 week ago
Last Update on 07 Jan, 2026
Synced 10 hours ago
Last Synced on
Rank
#48,941
—
No change
Active Installs
1+
—
No change
KW Avg Position
109
—
No change
Downloads
338
+1 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 10
0+
10+
38,784
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 8 more installs to reach 10+
Rank Changes
Current
#48,941
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
1.0
0 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 2 of 2| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| static site generator | 89 | — | Tag | 14 hours ago |
| static site export | 129 | — | Tag | 14 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 2.1.4
- Last Updated
- Jan 07, 2026
- Requires WP
- 5.0+
- Tested Up To
- 6.9
- PHP Version
- 7.4 or higher
- Author
- Derick Schaefer
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,738
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#930
Query Monitor - The developer tools panel for WordPress
200K+ installs
#255
MalCare WordPress Security Plugin - Malware Scanner, Cleaner, Security Firewall
200K+ installs
#258
iubenda | All-in-one Compliance for GDPR / CCPA Cookie Consent + more
200K+ installs
#261
Frequently Asked Questions
Common questions about Static Cache Wrangler
Yes — Static Cache Wrangler captures the final rendered HTML, so it works with any theme, builder, or framework (Elementor®, Divi®, Gutenberg®, etc.).
No — it's designed as a lazy loader, generating static pages only on demand with minimal memory and CPU impact.
No — it never alters your WordPress database schema or adds tables. All plugin-related options, transients, and scheduled events are automatically removed upon uninstall.
Absolutely. The output is plain HTML and assets — deploy it on any web server, CDN, or open it directly in a browser.
Dynamic features like forms, comments, or live feeds won't function in the static version, but all rendered content and assets are preserved exactly.
Revisit the updated pages while generation is enabled, or run wp scw process to rebuild all static content.
Yes! You can customize file locations and behavior using constants in wp-config.php: Change static files location: define('STCW_STATIC_DIR', WP_CONTENT_DIR . '/my-static-files/'); Change assets location: define('STCW_ASSETS_DIR', WP_CONTENT_DIR . '/my-assets/'); Disable async asset processing (process immediately): define('STCW_ASYNC_ASSETS', false);
You can use WordPress filters to customize behavior: Exclude specific URLs from generation: add_filter('stcw_should_generate', function($should, $url) { if (strpos($url, '/private/') !== false) { return false; } return $should; }, 10, 2); Modify HTML before saving: add_filter('stcw_before_save_html', function($html) { return str_replace('', ' Generated: ' . date('Y-m-d') . ' ', $html); });
Version 2.0.5 removes the following WordPress-specific meta tags from static HTML: * RSD (Really Simple Discovery) links for XML-RPC * Windows Live Writer manifest links * WordPress shortlink tags * Generator meta tags (WordPress version) * REST API discovery links * oEmbed discovery links * REST API HTTP headers * data-wp-strategy attributes on script tags These tags serve no purpose in static sites and removing them improves portability and security.
Remove additional WordPress tags: add_action('stcw_remove_wp_head_tags', function() { remove_action('wp_head', 'your_custom_action'); }); Modify HTML before saving: add_filter('stcw_process_static_html', function($html) { // Add custom footer, remove tracking, etc. return $html; }); See the plugin documentation for 15+ complete examples.