wp_get_all_sessions()
Retrieve a list of sessions for the current user.
Description Description
Return Return
(array) Array of sessions.
Source Source
File: wp-includes/user.php
function wp_get_all_sessions() { $manager = WP_Session_Tokens::get_instance( get_current_user_id() ); return $manager->get_all(); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |