WordPress 登录界面默认选中/隐藏“记住我的登录信息”

WordPress 后台登录界面有一个“记住我的登录信息”选项:

remember-option-wpdaxue_com

勾选后可以让浏览器保存你的登录cookie 14天,在这14天内,如果你没有手动登出的话,是可以直接进入WP管理后台的;如果你没有勾选,默认只保留 2 天 cookie,也就是说,在 48小时后,你就必须再次登录。如果每次都要点击选中,估计有些朋友还是嫌麻烦,那你可以在主题的 functions.php 中添加下面的代码,就可以自动选中:

/**
 * WordPress 登录界面默认选中“记住我的登录信息”
 * https://www.wpdaxue.com/remember-option.html
 */
add_filter( 'login_footer', 'wpdx_always_checked_rememberme' );
function wpdx_always_checked_rememberme() {
	echo "<script>document.getElementById('rememberme').checked = true;</script>";
}

当然,如果你压根就不想看到这个选项,你还可以直接在主题的 functions.php 中添加下面的代码即可隐藏这个选项:

/**
 * WordPress 登录界面隐藏“记住我的登录信息”
 * https://www.wpdaxue.com/remember-option.html
 */
add_action('login_head', 'wpdx_remove_rememberme');
function wpdx_remove_rememberme(){
	echo '<style type="text/css">.forgetmenot { display:none; }</style>';
}

来源:

https://www.wpdaxue.com/remember-option.html

微信公众号
手机浏览(小程序)
0
分享到:
没有账号? 忘记密码?