wp_get_all_sessions

The timeline below displays how wordpress function wp_get_all_sessions has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.1

/**
 * Retrieves a list of sessions for the current user.
 *
 * @since 4.0.0
 *
 * @return array Array of sessions.
 */
function wp_get_all_sessions()
{
    $manager = WP_Session_Tokens::get_instance(get_current_user_id());
    return $manager->get_all();
}

WordPress Version: 5.5

/**
 * Retrieve a list of sessions for the current user.
 *
 * @since 4.0.0
 *
 * @return array Array of sessions.
 */
function wp_get_all_sessions()
{
    $manager = WP_Session_Tokens::get_instance(get_current_user_id());
    return $manager->get_all();
}

WordPress Version: 4.0

/**
 * Retrieve a list of sessions for the current user.
 *
 * @since 4.0.0
 * @return array Array of sessions.
 */
function wp_get_all_sessions()
{
    $manager = WP_Session_Tokens::get_instance(get_current_user_id());
    return $manager->get_all();
}