如果用户(admin)在WordPress网站中处于非 Activity 状态15分钟,我想使 session 过期,

谁能告诉我WordPress中的默认 session 过期时间是多少?以及如何更改该默认到期时间。

最佳答案

只需将此代码添加到主题的functions.php中:

add_filter('auth_cookie_expiration', 'my_expiration_filter', 99, 3);
function my_expiration_filter($seconds, $user_id, $remember){

    //if "remember me" is checked;
    if ( $remember ) {
        //WP defaults to 2 weeks;
        $expiration = 14*24*60*60; //UPDATE HERE;
    } else {
        //WP defaults to 48 hrs/2 days;
        $expiration = 2*24*60*60; //UPDATE HERE;
    }

    //http://en.wikipedia.org/wiki/Year_2038_problem
    if ( PHP_INT_MAX - time() < $expiration ) {
        //Fix to a little bit earlier!
        $expiration =  PHP_INT_MAX - time() - 5;
    }

    return $expiration;
}

关于wordpress - 如何在WordPress中更改 session 过期时间?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9191359/

10-16 00:02