I have the following plugin: http://wordpress.org/support/plugin/wp-session-manager
I cannot work out how to use the session variables in WordPress. From what I unde
function.php
function register_my_session(){ if( ! session_id() ) { session_start(); } } add_action('init', 'register_my_session');
$_SESSION['something'] = $xyz