by Sybre Waaijer on WordPress.org
Put W3 Total Cache on auto pilot. This plugin allows you to control W3 Total Cache by simply using your website. So your cache is always up to date.
It’s great when you have users that don’t have access to W3 Total Cache control but still need to purge the cache.
It’s also brilliant when you have created a blog for a customer, this way they won’t even know it’s there: All cache is purged automatically.
It’s absolutely great on MultiSite installations, especially when you allow untrusted users to create a blog.
What this plugin does:
On the front end:
Behind the screens:
Purge cache, whenever:
MultiSite, if not Super-Admin:
No more:
WPMUdev Domain Mapping support
Add a greater amount of pages and posts to be flushed on several actions
add_filter( ‘wap_limit_flush’, ‘my_wap_limit_flush’ )
function my_wap_limit_flush() {
$limit = 50; // Default is 20.
return $limit;
}
Flush everything, ignoring the limit
add_filter( ‘wap_flush_all’, ‘__return_true’ );