by derickschaefer
0 (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.4
v2.1.6
Current Version v2.1.6
Updated 2 weeks ago
Last Update on 20 Mar, 2026
Refreshed 6 hours ago
Last Refreshed on
Rank
#55,140
—
No change
Active Installs
0+
—
No change
KW Avg Position
115
—
No change
Downloads
569
+3 today
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 10
0+
10+
9,889
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
#55,140
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
0.0
0 reviews
Overall
0%
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 | 91 | — | Tag | 1 month ago |
| static site export | 139 | — | Tag | 1 month 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.6
- Last Updated
- Mar 20, 2026
- Requires WP
- 5.0+
- Tested Up To
- 6.9.4
- PHP Version
- 7.4 or higher
- Author
- derickschaefer
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- 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,714
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#955
iubenda | All-in-one Compliance for GDPR / CCPA Cookie Consent + more
200K+ installs
#259
PO
Page Optimize
200K+ installs
#262
MalCare WordPress Security Plugin – Malware Scanner, Cleaner, Security Firewall
200K+ installs
#265
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.