wordpress禁止多地同时登录

wordpress禁止用户在不同地点同时登录,管理员除外。 function pcl_user_has_concurrent_sessions() { return (is_user_logged_in() && count(wp_get_all_sessions()) > 2); } add_action("init", function () { // 除了管理员,其他人不允许多地同时登陆。 if (!current_user_can("manage_opti…