检查特定用户是否在wp之外在线

时间:2015-08-06 作者:user2650277

我想知道是否有具有特定用户id的用户登录了我的wordpress站点。我如何才能准确地做到这一点。

2 个回复
SO网友:markmoxx

您可以尝试使用wp_login 行动挂钩:

function custom_check_for_user($user_login, $user) {
    if($user->ID == 123) { // Where 123 is the particular user\'s ID
        // Do something here, eg. PHP mail() function
    }
}
add_action(\'wp_login\', \'custom_check_for_user\', 10, 2);
进一步阅读:https://codex.wordpress.org/Plugin_API/Action_Reference/wp_login

SO网友:mmm

请尝试此代码,它位于用户编辑中。php:
$sessions = WP_Session_Tokens::get_instance( $profileuser->ID );

结束

相关推荐

Problem with footer and login

我在页面登录时有页脚问题,我的帐户不在底部http://www.budoor66.com/login/还有,当客户不是会员时,如何在登录中显示此文本(仅限会员访问,若要查看和购买会员套餐,请单击此处)当他登录时就消失了帮助我:/