简体   繁体   English

如何在 Wordpress 管理仪表板上更改空闲时间?

[英]How to change Idle time on the Wordpress admin dashboard?

I have a fresh installation of Wordpress 5.9, I installed the WPVivid plugin to restore from backup.我全新安装了 Wordpress 5.9,我安装了 WPVivid 插件以从备份中恢复。 However, the restoration process seems to take more than 15 mins but wordpress keeps logging me out with a popup message that says "session expired".然而,恢复过程似乎需要超过 15 分钟,但 wordpress 不断让我退出并显示“会话已过期”的弹出消息。 How do I change that?, or maybe increase the idle timeout?我该如何改变它?,或者可能增加空闲超时?

在此处输入图像描述

you can use this code it您可以使用此代码

add_filter('auth_cookie_expiration', 'ak_function', 99, 3);
function ak_function($seconds, $user_id, $sesstiontime){
    
    if ( $sesstiontime) {       
        $expiration = 14*24*60*60;
    } else {
          $expiration = 2*24*60*60; //UPDATE HERE;
    }
    if ( PHP_INT_MAX - time() < $expiration ) {
        $expiration =  PHP_INT_MAX - time() - 5;
    }

    return $expiration;
}

or或者

add_filter( 'auth_cookie_expiration', 'keep_me_logged_in_for_1_year' );
function keep_me_logged_in_for_1_year( $expirein ) {
    return YEAR_IN_SECONDS; // 1 year in seconds
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在 WordPress 管理仪表板中更改 WooCommerce 产品菜单标题 - Change WooCommerce products menu title in WordPress admin dashboard 在不更改管理仪表板语言的情况下更改 wordpress 站点语言 - Change wordpress site language without changing the admin dashboard language 如何更改 WordPress 仪表板中的 WooCommerce 货币符号? - how to change WooCommerce currency symbol in WordPress dashboard? 如何在WordPress中添加菜单位置作为管理仪表板菜单 - How to add menu locations as admin dashboard menu in WordPress 如何重命名 WordPress 管理仪表板上 WooCommerce 选项卡下的菜单选项卡 - How to rename a menu tab under WooCommerce tab on WordPress admin dashboard 如何从管理仪表板中删除/隐藏 wordpress 菜单 - how to remove/hide wordpress menu from admin dashboard 如何检索实时流量并将其显示在管理仪表板上? - How to retrieve real time traffic and display it onto an admin dashboard? 如何在Wordpress Admin中更改属性或HTML - How to change the properties or html inside wordpress admin 如何更改 Wordpress 管理面板中的帖子链接? - How to change links of posts in admin panel of Wordpress? 在 WordPress 管理仪表板中加载自定义页面模板 - Load custom page templates in WordPress admin dashboard
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM