Skip to content

Instantly share code, notes, and snippets.

@lanesgists
Created November 6, 2012 20:47
Show Gist options
  • Save lanesgists/4027412 to your computer and use it in GitHub Desktop.
Save lanesgists/4027412 to your computer and use it in GitHub Desktop.
PHP: WP flush W3TC Object Cache
<?php
if ( defined( 'W3TC_DIR' ) && class_exists( 'W3_ObjectCache' ) ) {
require_once W3TC_DIR . '/lib/W3/ObjectCache.php';
$w3_objectcache = &W3_ObjectCache::instance();
$w3_objectcache->flush();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment