检查特定用户是否在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 ); 结束 文章导航