| 开发者 | obenland |
|---|---|
| 更新时间 | 2026年5月29日 02:18 |
| 捐献地址: | 去捐款 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 6.9 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
wp_login action, so it works with any login flow that triggers it — including the Two Factor plugin, WooCommerce, BuddyBoss, and most social-login plugins./wp-content/plugins/ directory.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.
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';
} );
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' );
} );
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.
Deactivating leaves stored login timestamps intact, so reactivating preserves history. Uninstalling (deleting the plugin entirely) removes all of the plugin's user meta.