各位专家,您好。请我需要的代码,可以帮助我登录的所有用户在我的WordPress网站上的所有位置后,一个特定的时间。
这就是我目前的情况:
add_action(\'wp_login\',\'user_update_login\');
// function fires when a user logs in
function user_update_login($login) {
global $user_ID;
$user = get_userdatabylogin($login);
// save the current time when the user logged in
update_usermeta( $user->ID, \'last_login\', time() );
}
function check_time_limit() {
// populate the user objects
global $user_ID;
get_currentuserinfo();
// ...
}
感谢您的支持。