這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

User Last Visit

外掛說明

The plugin keeps record in UNIX timstamp format of the last time each logged in user visits the site. Record for each user is directly
visible on the users list table in the admin panel. The plugin also provides some utility function and hook.

Function Description

user_last_visit( $user_id = "current", $verbose = TRUE );

  • Parameters :

    • mixed $user_id, the user ID or “current” for the current user (logged in user). default: “current”.
    • bool $verbose, if TRUE the result returned is a literal expression of the last visit time. default: TRUE.
  • Returned value :

If $verbose is TRUE a string is returned. If $verbose is FALSE the UNIX timestamp of last visit is returned. When the user is not logged in, or when there is no record yet, the function return FALSE if $verbose is set to FALSE, a string if $verbose is TRUE.

Filter Hook

"ulv-can-record" : located in "./includes/user-last-visit.class.php" around line #24

Some users or some pages can be excluded for last visit recording. There is an admin page for that. But you can also add some additional filtering via this hook. This filter hook is applied within a wp_loaded action. So you must attach your functions before that (typically on init, once the user is authenticated).
You can eventually use the User_Last_Visit class separately in your theme/plugin.

Available Translations

Français

安裝方式

Requirement

  • Nothing special

Manual Installation

  • Upload the .zip file to wp-content/plugins/
  • Activate the plugin

常見問題集

Installation Instructions

Requirement

  • Nothing special

Manual Installation

  • Upload the .zip file to wp-content/plugins/
  • Activate the plugin
The plugin is installed and activated, but still no last visit time

By default, record are disabled for everybody, every pages. Verify the plugin’s settings. The admin page is on a sub-menu of the “Settings” main menu.

It works for some users only

Records are set only once the plugin is installed and set up. The “General record exclusion” is evaluated first, then the “User role” and finally each “user ID” individually.

After the first installation, there is no record yet until the user visit the site (and passes through all exclusion conditions).

使用者評論

2018 年 1 月 8 日
It works fine. But I do have a wish: I would like to sort desc/asc by last visit and I would also like if I could export a list as csv-file.
2017 年 1 月 11 日
Only one minor little bug where it has some trouble catching active users who just logged in within the last few seconds.
閱讀全部 2 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈User Last Visit〉的開發相關工作。

參與者

將〈User Last Visit〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

1.0

  • minor UI improvement
  • admin js en css versionning

= 0.8.2
* fix a bug in non-multisite created by precedent version

0.8.1

  • fixed some multisite issues.

0.8

  • initial release