Spring til indhold
WordPress.org

Dansk

  • Temaer
  • Plugins
  • Nyheder
  • Support
  • Om
  • Meetup
  • Vær med
  • Om
  • Få WordPress
Få WordPress
WordPress.org

Plugin Directory

Admin Users Logged In

  • Indsend et plugin
  • Mine favoritter
  • Log ind
  • Indsend et plugin
  • Mine favoritter
  • Log ind

Admin Users Logged In

Af Marcel Pol
Download
  • Detaljer
  • Vurderinger
  • Installation
  • Udvikling
Support

Beskrivelse

Dashboard widget that shows admin users and when they were last logged in.

Compatibility

This plugin is compatible with ClassicPress.

Contributions

This plugin is also available in
Codeberg.

Skærmbilleder

  • Dashboard widget with admin users and their last login.

Installation

Installation

  • Install the plugin through the admin page “Plugins”.
  • Alternatively, unpack and upload the contents of the zipfile to your ‘/wp-content/plugins/’ directory.
  • Activate the plugin through the ‘Plugins’ menu in WordPress.
  • Visit the Dashboard. That’s it.

PHP filters for Custom Roles

This first filter is for showing an additional role in the widget.

<?php
    function my_auli_get_role__in( $role__in ) {
        $role__in[] = 'Subscriber';
        return $role__in;
    }
    add_filter( 'auli_get_role__in', 'my_auli_get_role__in' );
?>

This second filter is for who gets to see the widget.

<?php
    function my_auli_show_for_role__in( $role__in ) {
        $role__in[] = 'Customrole';
        return $role__in;
    }
    add_filter( 'auli_show_for_role__in', 'my_auli_show_for_role__in' );
?>

Anmeldelser

Perfect

Pieterjan Deneys 2. juni, 2021
Thanks to the easily editable language file, I was able to translate this plugin to my wishes. 🙂 Edit: which is now possible! THANKS!
Læs 1 anmeldelse

Bidragsydere & udviklere

“Admin Users Logged In” er open source-software. Følgende personer har bidraget til dette plugin.

Bidragsydere
  • Marcel Pol

“Admin Users Logged In” er blevet oversat til 2 sprog. Tak til oversætterne for deres bidrag.

Oversæt “Admin Users Logged In” til dit eget sprog.

Interesseret i udvikling?

Gennemse koden, tjek SVN repository, eller abonner på udviklerloggen via RSS.

Ændringslog

1.0.6

  • 2024-10-02
  • Loading plugin translations should be delayed until init action (in this case admin_init).
  • Use DIR for loading translations instead of dirname(FILE).
  • Better check for direct access of files.

1.0.5

  • 2022-05-11
  • Add filter ‘auli_get_role__in’ for showing users with these roles.
  • Remove check for shown users based on capability.
  • Add filter ‘auli_show_for_role__in’ for allowing users to see this widget.
  • No need to check if function ‘current_user_can()’ exists.

1.0.4

  • 2021-06-01
  • Support translations.

1.0.3

  • 2021-05-31
  • Small updates from wpcs.

1.0.2

  • 2018-02-06
  • Fix the location of closing (outside the loop).

1.0.1

  • 2018-02-03
  • Only show the widget on capability ‘edit_posts’.

1.0.0

  • 2018-01-18
  • First release.

Meta

  • Version 1.0.6
  • Senest opdateret 1 måned siden
  • Aktive installationer 100+
  • WordPress-version 4.4 eller højere
  • Testet op til 6.9.1
  • PHP-version 7.0 eller højere
  • Sprog

    Dutch, Dutch (Belgium) og English (US).

    Oversæt til dit sprog

  • Tags
    dashboard widgetlast login
  • Avanceret visning

Bedømmelser

5 ud af 5 stjerner.
  • 1 5-stjernet anmeldelse 5 stjerner 1
  • 0 4-stjernet anmeldelser 4 stjerner 0
  • 0 3-stjernet anmeldelser 3 stjerner 0
  • 0 2-stjernet anmeldelser 2 stjerner 0
  • 0 1-stjernet anmeldelser 1 stjerne 0

Tilføj min vurdering

Se alle anmeldelser.

Bidragsydere

  • Marcel Pol

Support

Problemerne er løst inden for de sidste to måneder:

1 ud af 1

Vis supportforum

  • Om
  • Nyheder
  • Hosting
  • Privatliv
  • Fremvisning
  • Temaer
  • Plugins
  • Blokgrupper
  • Lær
  • Support
  • Udviklere
  • WordPress.tv ↗
  • Bliv involveret
  • Begivenheder
  • Doner ↗
  • Fem for Fremtiden
  • WordPress.com ↗
  • Matt ↗
  • bbPress ↗
  • BuddyPress ↗
WordPress.org
WordPress.org

Dansk

  • Besøg vores X (tidligere Twitter) konto
  • Besøg vores Bluesky-konto
  • Besøg vores Mastodon konto
  • Besøg vores Threads-konto
  • Besøg vores Facebook side
  • Besøg vores Instagram konto
  • Besøg vores LinkedIn konto
  • Besøg vores TikTok-konto
  • Besøg vores YouTube-kanal
  • Besøg vores Tumblr-konto
Kode er poesi.