Skip to content

Instantly share code, notes, and snippets.

@Tabrisrp
Created September 26, 2017 18:29
Show Gist options
  • Save Tabrisrp/df6ad40e81b24418fe91627660c0d005 to your computer and use it in GitHub Desktop.
Save Tabrisrp/df6ad40e81b24418fe91627660c0d005 to your computer and use it in GitHub Desktop.
Clear cache on logout
function wp_rocket_clear_user_cache_logout() {
$user = wp_get_current_user();
rocket_clean_user( $user->ID );
}
add_action( 'clear_auth_cookie', 'wp_rocket_clear_user_cache_logout' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment