Static Cache Wrangler
by derickschaefer 1 (0 reviews)

Static Cache Wrangler

Export your WordPress site as a static HTML website — fast, secure, and offline-ready with WP-CLI support.

Static Cache Wrangler ranks #28,061 among WordPress.org plugins with 20+ active installations, is #1,493 of 4,566 in the Security category, a 1/5 rating from 0 reviews, and was last updated Aug 22, 2026. Data from WordPress.org, refreshed twice daily — see methodology.

Compatible with WP 7.1
v2.1.7 Current Version v2.1.7
Updated 1 month ago Last Update on 22 Aug, 2026
Refreshed 11 hours ago Last Refreshed on
#1,493 of 4,566 in Security Top 50% by installs
View on WordPress.org
Rank
#28,061
No change
Active Installs
20+
+17.6%
KW Avg Position
68.7
4 worse
Downloads
547
+3 today
Support Resolved
0%
No change
Rating
20%
Review 1 out of 5
1 (0 reviews)

Next Milestone 30

Total Progress 30%
20+ 30+
9,798
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
Upgrade to Pro
Need 7 more installs to reach 30+

Rank Changes

27,731 27,851 27,971 28,090 28,210 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
27,685 27,903 28,122 28,340 28,558 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Current #28,061
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
0 10 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

1.0
0 reviews
Overall 20%
5
0 (0%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

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.

Sign In / Register

You need to sign in or register to use this feature.