Skip to content

Instantly share code, notes, and snippets.

@rpowis
Created November 11, 2013 23:32
Show Gist options
  • Save rpowis/7422559 to your computer and use it in GitHub Desktop.
Save rpowis/7422559 to your computer and use it in GitHub Desktop.
add_action('init', 'myStartSession', 1);
add_action('wp_logout', 'myEndSession');
add_action('wp_login', 'myEndSession');
function myStartSession() {
if(!session_id()) {
session_start();
}
}
function myEndSession() {
session_destroy ();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment