Ga naar de inhoud
WordPress.org

Nederlands

  • Thema’s
  • Plugins
  • Nieuws
    • Documentatie
    • Forums
  • Over
    • Vertaalproces
    • Stijlgids
    • Onze community
    • Meetups
    • WordCamps
  • Contact
  • WordPress downloaden
WordPress downloaden
WordPress.org

Plugin Directory

WP Last Login

  • Dien een plugin in
  • Mijn favorieten
  • Login
  • Dien een plugin in
  • Mijn favorieten
  • Login

WP Last Login

Door Konstantin Obenland
Download
Live voorbeeld
  • Details
  • Beoordelingen
  • Installatie
  • Ontwikkeling
Ondersteuning

Beschrijving

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

  • Sortable “Last Login” column on the Users screen, including the network admin user list on multisite.
  • Hover any date to reveal the exact login time.
  • Captures logins via the standard 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.
  • Users without a recorded login show a neutral em-dash (—) — never a misleading “never” — and still sort correctly when ordered by last login.
  • Lightweight: one user meta key, no settings page, no extra database tables.
  • Filter hooks let you customize the date format or hide the column from non-admin roles.

Plugin filter hooks

wpll_current_user_can (boolean)

Of de kolom getoond moet worden.
Standaard: true

wpll_date_format (string)

De datumnotatie voor de datumweergave.

Schermafbeeldingen

  • Kolom met laatste login in de gebruikerstabel.

Installatie

  1. Download WP Last Login.
  2. Pak de map uit in de map /wp-content/plugins/.
  3. Activeer de plugin via het menu ‘Plugins’ in WordPress.

FAQ

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.

Beoordelingen

Very useful

Joris Le Blansch 1 januari 2026
Simple, yet very useful plugin. Using it on dozens of sites I manage.

as perfect as simple

amiens80 4 oktober 2024
this is the kind of plugin i love : just install, activated, no need setting, it runs fine! no need support. As an english person, i have no need to translate it at all. Great one ! Work fine on wp 6.6.2 and wp 6.6.1 ps : I would request another tiny feature : add the last ip of login date !

Works WP 6.5

flyingkites 3 april 2024
Switched to this plugin as another similar plugin by YooHoo was incompatible with TwoFactor. This works with both TwoFactor and Limit Login Attempts plugins. [Anyone who says it does not work likely has a code conflict with another plugin]

Excellent + now compatible with Two Factor

DigitalGdn 27 december 2023
Well maintained plugin. This is the only ‘last login’ plugin I have found that supports two factor.

Doesn’t work, sadly

editorialteamnwu 30 januari 2023
Totally useless: every user is listed as never having logged in, even the one I’m currently logged in as to view this. Two stars instead of one because at least it didn’t seem to break anything.

Is not reliable

Dirk 18 november 2019 4 reacties
It shows users as Login “Never” even the users have been logged in. I decided on this information to delete users! Good luck, I had an early backup of the database! Do not trust in this Plugin!
Lees alle 25 beoordelingen

Bijdragers & ontwikkelaars

“WP Last Login” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers
  • Konstantin Obenland

“WP Last Login” is vertaald in 11 localen. Dank voor de vertalers voor hun bijdragen.

Vertaal “WP Last Login” in je eigen taal.

Interesse in ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.

Changelog

7

  • Compatibiliteit toegevoegd met de Two Factor plugin. Met dank aan @bkno.
  • Improved date display to display login time on hover.

6

  • Bestandsstructuur vernieuwd om overbodige bestanden te verwijderen.
  • Bug opgelost waarbij logindatums werden overschreven bij heractivatie van de plugin. Met dank aan @richardbuff.

5

  • Verbeterde deïnstallatieroutine (vraagt niet langer alle gebruikers op).
  • Updated utility class.
  • Getest met WordPress 6.1.

4

  • Datumweergave verbeterd zodat rekening wordt gehouden met de tijdzone van de site. Met dank aan @knutsp.

3

  • Bug opgelost waarbij gebruikers die nog niet zijn ingelogd uit de gebruikerslijst verdwenen bij sorteren op laatste login. Zie https://wordpress.org/support/topic/new-users-dont-get-the-meta-field/

2

  • Onderhoudsrelease.
  • Updated code to adhere to WordPress Coding Standards.
  • Getest met WordPress 5.0.

1.4.0

  • Een langlopende bug opgelost waarbij sorteren van gebruikers op laatste login niet werkte.
  • Getest met WordPress 4.3.

1.3.0

  • Onderhoudsrelease.
  • Getest met WordPress 4.0.

1.2.1

  • Wijzigingen aan wp_login() teruggedraaid omdat het tweede argument niet altijd lijkt te worden meegegeven.

1.2.0

  • Gebruikers kunnen nu gesorteerd worden op laatste login!
  • Updated utility class.
  • Deense vertaling toegevoegd. Met dank aan thomasclausen.

1.1.2

  • Bug opgelost waarbij de inhoud van andere aangepaste kolommen niet werd getoond.

1.1.1

  • Updated utility class.

1.1.0

  • Weergave van de kolom filterbaar gemaakt.
  • Kolom iets verbreed om plaats te bieden aan langere datumstrings.

1.0

  • Initiële release.

Meta

  • Versie 7
  • Laatst geüpdatet 3 dagen geleden
  • Actieve installaties 10.000+
  • WordPress versie 6.5 of nieuwer
  • Getest t/m 6.9.4
  • PHP versie 7.4 of nieuwer
  • Talen

    Arabic, Danish, Dutch, English (US), Finnish, French (France), German, Italian, Norwegian (Bokmål), Spanish (Chile), Spanish (Spain) en Swedish.

    Vertaal in je eigen taal

  • Tags
    adminlast loginloginuser
  • Geavanceerde weergave

Waarderingen

3.7 van 5 sterren.
  • 13 5 sterren beoordelingen 5 sterren 13
  • 3 4 sterren beoordelingen 4 sterren 3
  • 2 3 sterren beoordelingen 3 sterren 2
  • 3 2 sterren beoordelingen 2 sterren 3
  • 4 1 sterren beoordelingen 1 ster 4

Your review

Bekijk alle beoordelingen

Bijdragers

  • Konstantin Obenland

Ondersteuning

Iets te melden? Hulp nodig?

Het supportforum bekijken

Doneren

Wil je de groei van deze plugin ondersteunen?

Doneer aan deze plugin

  • Over
  • Nieuws
  • Hosting
  • Privacy
  • Showcase
  • Thema's
  • Plugins
  • Patronen
  • Leren
  • Ondersteuning
  • Ontwikkelaars
  • WordPress.tv ↗
  • Raak betrokken
  • Evenementen
  • Doneren ↗
  • Five for the Future
  • WordPress.com ↗
  • Matt ↗
  • bbPress ↗
  • BuddyPress ↗
WordPress.org
WordPress.org

Nederlands

  • Bezoek ons X (voorheen Twitter) account
  • Bezoek ons Bluesky account
  • Bezoek ons Mastodon account
  • Bezoek ons Threads account
  • Onze Facebook pagina bezoeken
  • Bezoek ons Instagram account
  • Bezoek ons LinkedIn account
  • Bezoek ons TikTok account
  • Bezoek ons YouTube kanaal
  • Bezoek ons Tumblr account
Code is poëzie.
The WordPress® trademark is the intellectual property of the WordPress Foundation.