Linux 软件免费装
Banner图

WP Last Login

开发者 obenland
更新时间 2026年5月29日 02:18
捐献地址: 去捐款
PHP版本: 7.4 及以上
WordPress版本: 6.9
版权: GPLv2 or later
版权网址: 版权信息

标签

login admin user last login login date

下载

2 3 4 5 6 1.2.1 1.3.0 7 1.1.1 1.0 1.1.0 1.1.2 1.2.0 1.4.0

详情介绍:

WP Last Login records when each user signs in and surfaces it as a sortable column on the Users screen — so you can see who's active, identify dormant accounts, and confirm that real people are coming back. Features

安装:

  1. Download WP Last Login.
  2. Unzip the folder into the /wp-content/plugins/ directory.
  3. Activate the plugin through the 'Plugins' menu in WordPress.

常见问题:

Why does the column show an em-dash (—) for all my users?

The plugin records a login when a user signs in after it's been activated. WordPress doesn't store historical login data, so existing accounts will start populating their "Last Login" the next time each user logs in. Hovering the dash shows a tooltip explaining the same.

How do I change the date format or show the time?

The date follows your site's general date format (Settings → General); the exact time appears on hover. To override the date format, use the wpll_date_format filter: add_filter( 'wpll_date_format', function() { return 'Y-m-d H:i'; } );

How do I hide the column from non-admin users?

Filter wpll_current_user_can and return a capability check. Login tracking still happens — only column visibility is gated: add_filter( 'wpll_current_user_can', function() { return current_user_can( 'manage_options' ); } );

Does it work with multisite, Two Factor, WooCommerce, BuddyBoss, or social login plugins?

Yes. The plugin hooks into WordPress's standard wp_login action, so any login method that triggers it is captured. The Two Factor plugin (which interrupts wp_login) is supported via a dedicated hook.

What happens to my data if I deactivate the plugin?

Deactivating leaves stored login timestamps intact, so reactivating preserves history. Uninstalling (deleting the plugin entirely) removes all of the plugin's user meta.

更新日志:

7 6 5 4 3 2 1.4.0 1.3.0 1.2.1 1.2.0 1.1.2 1.1.1 1.1.0 1.0