W3TC Auto Pilot

0

This plugin puts your W3 Total Cache configuration on auto pilot. It’s great when you have users that don’t have access to W3 Total Cache control but still need to purge the cache.

Version
Last updated
Active installations
WordPress Version
Tested up to
pa_languages
Rating
Total ratings
Tag
This plugin is outdated and might not be supported anymore.

Description

This plugin puts your W3 Total Cache configuration on auto pilot.

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:

  • No more W3 Total Cache comments in the HTML output

Behind the screens:

Purge cache, whenever:

  • a post is updated.
  • theme is changed.
  • a widget is updated or changed from position.
  • a sidebar is updated.
  • the theme is edited in Customizer.
  • the nav menu is updated.

MultiSite, if not Super-Admin:

No more:

  • purge from cache button on pages and posts edit screens.
  • admin menu on the admin bar.
  • admin menu in the dashboard.
  • amin notices in the dashboard after settings change or on error.
  • admin scripts in back end.
  • admin scripts on front end.

WPMUdev Domain Mapping support

  • This plugin fixes a few issues when you’re combining W3TC and Domain Mapping by automatically flushing the posts on a site. This eliminates confusion.
    This plugin allows you to adjust the output of a few filters. However, the defaults should work out for everyone.

Filters

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’ );