Clear cache on logout
-
A while back I was given some code that could be added to the functions.php file to clear the cache on logout.
Can you verify this code will still work. I’ve seen some issues where it does not seem to workfunction clear_cache_on_logout() {
if (class_exists('WP_Optimize')) {
WP_Optimize()->get_page_cache()->purge();
}
}
add_action('wp_logout', 'clear_cache_on_logout');
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
The topic ‘Clear cache on logout’ is closed to new replies.