Skip to content

Instantly share code, notes, and snippets.

@pschoenmakers
Created May 3, 2021 18:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pschoenmakers/5af6886f62bedcf8d31dc1915fe08dac to your computer and use it in GitHub Desktop.
Save pschoenmakers/5af6886f62bedcf8d31dc1915fe08dac to your computer and use it in GitHub Desktop.
W3 Total Cache clear cache on logout hook
<?php
function clear_cache_on_logout() {
if (function_exists('w3tc_flush_all')) {
w3tc_flush_all();
}
}
add_action( 'wp_logout', 'clear_cache_on_logout' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment