by Fernando Tellado on WordPress.org
Flushes and deactivates cache and optimization plugins, enables debug mode, and provides maintenance mode for WordPress development.

Admin dashboard with status overview and quick actions
Anti-Cache Kit is a development tool for WordPress developers and designers who need to bypass all caching and optimization mechanisms during development, testing, or troubleshooting.
Development tool only. Do not leave active on production sites.
Cache and optimization management
Server-level cache prevention
Debug mode activation
Maintenance mode
ayudawp_anticache_maintenance_data – Filter to customize maintenance page data (heading, status, message, retry)ayudawp_anticache_cache_plugins – Filter to modify the list of supported cache and optimization pluginsAYUDAWP_ANTICACHE_VERSION – Plugin versionAYUDAWP_ANTICACHE_PLUGIN_DIR – Plugin directory pathAYUDAWP_ANTICACHE_PLUGIN_URL – Plugin directory URLAYUDAWP_ANTICACHE_PLUGIN_BASENAME – Plugin basename for hooksCustomize maintenance page:
add_filter( 'ayudawp_anticache_maintenance_data', function( $data ) {
$data['heading'] = 'My Site Name';
$data['status'] = 'Updating...';
$data['message'] = 'We are deploying a new version. Back in a few minutes.';
return $data;
} );
Add a custom cache plugin:
add_filter( 'ayudawp_anticache_cache_plugins', function( $plugins ) {
$plugins['my-cache/my-cache.php'] = array(
'name' => 'My Cache Plugin',
'type' => 'cache',
);
return $plugins;
} );Support
Love the plugin? Please leave us a 5-star review and help spread the word!
We are specialists in WordPress security, SEO, and performance optimization plugins. We create tools that solve real problems for WordPress site owners while maintaining the highest coding standards and accessibility requirements.