wp_get_all_sessions(): array

In this article

Retrieves a list of sessions for the current user.

Return

array Array of sessions.

Source

function wp_get_all_sessions() {
	$manager = WP_Session_Tokens::get_instance( get_current_user_id() );
	return $manager->get_all();
}

Changelog

VersionDescription
4.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.