Skip to content

Instantly share code, notes, and snippets.

@dagostoni
Created February 5, 2016 16:54
Show Gist options
  • Save dagostoni/d32f876d5543d96c4560 to your computer and use it in GitHub Desktop.
Save dagostoni/d32f876d5543d96c4560 to your computer and use it in GitHub Desktop.
WP session
<?php
// http://silvermapleweb.com/using-the-php-session-in-wordpress/
// first of all
add_action('init', 'startSession', 1);
add_action('wp_logout', 'endSession');
add_action('wp_login', 'endSession');
function startSession() {
if(!session_id()) {
session_start();
}
}
function endSession() {
session_destroy();
}
// other code here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment