How do you use session variables in wordpress?

前端 未结 3 987
深忆病人
深忆病人 2020-12-30 12:26

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

3条回答
  •  臣服心动
    2020-12-30 13:13

    1. Add below code in function.php file
    function register_my_session(){
        if( ! session_id() ) {
            session_start();
        }
    }
    
    add_action('init', 'register_my_session');
    
    1. After that you can store value in session variable like
    $_SESSION['something'] = $xyz
    

提交回复
热议问题