WordPress.org

China 简体中文

  • 主题
  • 插件
  • 新闻
    • 文档
    • 论坛
  • 关于
  • 获取 WordPress
获取 WordPress
WordPress.org

Plugin Directory

Loggedin – Limit Concurrent Sessions

  • 提交插件
  • 我的收藏
  • 登录
  • 提交插件
  • 我的收藏
  • 登录

Loggedin – Limit Concurrent Sessions

作者:Joel James
下载
  • 详情
  • 评价
  • 安装
  • 开发进展
支持

描述

Loggedin is a lightweight WordPress plugin that lets you easily limit the number of simultaneous active sessions a user can have. This is a crucial feature for membership sites, online courses, and other platforms where you need to prevent users from sharing their accounts.

🎁 Features

  • Set Global Limits: Define a maximum number of concurrent logins for all users.
  • Flexible Login Behavior: Choose to either block new logins when the limit is reached or automatically log out the oldest session to allow a new one.
  • Prevent Account Sharing: By limiting sessions, you can effectively stop users from sharing their login credentials with others.
  • Admin Control: Easily force log out a user from the admin dashboard, giving you full control over active sessions.
  • Developer-Friendly: The plugin is built with a hook-based architecture, making it highly customizable and extensible for developers.

📦 Addons

Enhance LoggedIn’s functionality with these simple yet powerful add-ons.

  • Limit Per User: For more granular control, the Limit Per User addon allows you to set specific login limits for individual users, overriding the global settings. This is perfect for offering different tiers of access or special privileges.

  • Real-time Logout: This add-on ensures a truly seamless experience by checking for logouts in real time. When a user’s session is terminated in the background due to a login limit, the add-on will automatically refresh their page, instantly restricting access.

🐛 Bug Reports

Found a bug? We welcome your bug reports! Please report any issues directly on the Loggedin GitHub repository.

Please note: GitHub is for bug reports and development-related issues only. For support, please use the WordPress.org support forums.

屏幕截图

  • Settings
  • Manage Sessions

安装

  1. Install Loggedin either via the WordPress.org plugin repository or by uploading the files to your server. (See instructions on how to install Loggedin)
  2. Activate the plugin.
  3. Go to Users > Loggedin to configure it.

常见问题

Where can I find the settings for Loggedin?

You can find the plugin settings by navigating to Users > Loggedin in your WordPress admin dashboard.

What are the available login logic options?

Currently, the plugin offers three built-in login logic options:

  • Logout Oldest: When a user reaches the login limit, their oldest active session will be automatically terminated to allow for the new login.
  • Logout All: All other active sessions for the user will be logged out when a new session is started.
  • Block New: The new login attempt will be blocked if the user has already reached the maximum number of active sessions.

Additional logic options can be added using third-party plugins or custom code. For more details, see our documentation here.

How long does a login session last?

The duration of a login session is determined by WordPress’s default settings.

  • If the “Remember Me” box is checked during login, the session will last for 14 days.
  • If the “Remember Me” box is not checked, the session will last for 2 days.

You can customize this duration using the auth_cookie_expiration filter. Here’s an example of how to set the session to one month:

function custom_auth_cookie_expiration( $expire ) {
    return MONTH_IN_SECONDS; // Sets the session to one month
}

add_filter( 'auth_cookie_expiration', 'custom_auth_cookie_expiration' );

What if a user has reached the login limit but doesn’t know which devices are active?

Administrators can forcefully log a user out of all their active sessions from the dashboard.

  1. Find the user’s WordPress ID.
  2. Go to Users > Loggedin in your WordPress admin panel.
  3. Navigate to the Manage Sessions section.
  4. Enter the user ID and click the Force Logout button to end all of their active sessions.

Can I bypass the login limit for specific users or roles?

Yes, you can bypass the limit for certain users or roles by adding a few lines of code to your theme’s functions.php file or a custom plugin.

To bypass specific user IDs, use the following code:

function loggedin_bypass_users( $bypass, $user_id ) {
    // Add the user IDs you want to bypass to this array.
    $allowed_users = array( 1, 2, 3, 4, 5 );
    return in_array( $user_id, $allowed_users );
}

add_filter( 'loggedin_bypass', 'loggedin_bypass_users', 10, 2 );

To bypass specific user roles, use this code:

function loggedin_bypass_roles( $prevent, $user_id ) {
    // Add the roles you want to bypass to this array.
    $allowed_roles = array( 'administrator', 'editor' );
    $user = get_user_by( 'id', $user_id );
    $roles = ! empty( $user->roles ) ? $user->roles : array();
    return ! empty( array_intersect( $roles, $allowed_roles ) );
}

add_filter( 'loggedin_bypass', 'loggedin_bypass_roles', 10, 2 );

评价

Love it, works like a charm

DL 2025 年 9 月 26 日
Super cool plugin, lightweight, just works.

Works perfectly for me

zchas42 2025 年 8 月 4 日
Sell eLearning courses, need to prevent login sharing – combined with 2 factor authentication this plugin does the job very nicely.

Excellent

emmauelbright 2025 年 7 月 12 日
I like it

Great plugin

jacseq 2025 年 6 月 3 日
In use by us since at least two years. Simple and works properly.

Nice plugin

jeunon 2025 年 3 月 20 日
Simple and efficient !

Fantastic Plugin

jonahcoyote 2024 年 10 月 17 日
Simple, effective, works as advertised. Thanks so much!
阅读所有108条评价

贡献者及开发者

「Loggedin – Limit Concurrent Sessions」是开源软件。 以下人员对此插件做出了贡献。

贡献者
  • Joel James
  • Duck Dev

「Loggedin – Limit Concurrent Sessions」插件已被翻译至 5 种本地化语言。 感谢所有译者为本插件所做的贡献。

帮助将「Loggedin – Limit Concurrent Sessions」翻译成简体中文。

对开发感兴趣吗?

您可以浏览代码,查看SVN仓库,或通过RSS订阅开发日志。

更新日志

2.0.3 (09/12/2025)

👌 Improvements

  • Remove debug code.

2.0.2 (11/11/2025)

🐛 Bug Fixes

  • Nonce verification for Force Logout.
  • Uninstall cleanup.

2.0.1 (11/11/2025)

🐛 Bug Fixes

  • Fatal errors.
  • Empty addons page.

2.0.0 (10/11/2025)

📦 New

  • Settings page
  • Addons
  • Logout Oldest logic – Thanks #19.

👌 Improvements

  • Coding standards.
  • Sanitization.

1.3.2 (01/10/2024)

🐛 Bug Fixes

  • Security fixes.

1.3.1 (19/09/2020)

👌 Improvements

  • Support ajax logins – Thanks Carlos Faria.

1.3.0 (28/08/2020)

👌 Improvements

  • Improved “Allow” logic to check only after password check.

1.2.0 (07/06/2019)

📦 New

  • Added ability to choose login logic.

1.1.0 (06/06/2019)

📦 New

  • Added ability to force logout users.
  • Added cleanup on plugin uninstall.
  • Added review notice.

👌 Improvements

  • Code improvement

1.0.1 (02/07/2016)

🐛 Bug Fixes

  • Fixing misspelled variable.

1.0.0 (16/06/2016)

📦 New

  • Initial version release.

额外信息

  • 版本 2.0.3
  • 最后更新:17 小时前
  • 活跃安装数量 8,000+
  • WordPress 版本 5.0 或更高版本
  • 已测试的最高版本为 6.9
  • PHP 版本 7.4 或更高版本
  • 语言

    Chinese (Taiwan) 、 English (US) 、 German 、 Russian 、 Spanish (Mexico) 和 Swedish.

    翻译成简体中文

  • 标签
    limitloginlogoutsessionsuser login
  • 高级视图

评级

4.9 星(最高 5 星)。
  • 103 条 5 星评价 5 星 103
  • 2 条 4 星评价 4 星 2
  • 0 条 3 星评价 3 星 0
  • 2 条 2 星评价 2 星 2
  • 1 条 1 星评价 1 星 1

添加我的评价

查看全部评论

贡献者

  • Joel James
  • Duck Dev

支持

最近两个月解决的问题:

总计 1,已解决 1

查看支持论坛

捐助

您愿意支持这个插件的发展吗?

捐助此插件

  • 关于
  • 新闻
  • 主机
  • 隐私
  • 陈列窗
  • 主题
  • 插件
  • 区块样板
  • 学习
  • 支持
  • 开发者
  • WordPress.tv ↗︎
  • 参与
  • 活动
  • 捐赠 ↗
  • 未来五分计划
  • WordPress.com ↗
  • Matt ↗
  • bbPress ↗
  • BuddyPress ↗
WordPress.org
WordPress.org

China 简体中文

  • 关注我们的 X(原 Twitter)账号
  • 访问我们的 Bluesky 账号
  • 关注我们的 Mastodon 账号
  • 访问我们的 Threads 账号
  • 访问我们的 Facebook 公共主页
  • 关注我们的 Instagram 账号
  • 关注我们的 LinkedIn 主页
  • 访问我们的 TikTok 账号
  • 访问我们的 YouTube 频道
  • 访问我们的 Tumblr 账号
代码如诗