WP_User_Meta_Session_Tokens::update_sessions() WordPress Method

The WP_User_Meta_Session_Tokens::update_sessions() method is used to update the session tokens for a user. This is useful if a user's password has been changed or if the user has been logged out of all their sessions.

WP_User_Meta_Session_Tokens::update_sessions( array $sessions ) #

Updates the user’s sessions in the usermeta table.


Parameters

$sessions

(array)(Required)Sessions.


Top ↑

Source

File: wp-includes/class-wp-user-meta-session-tokens.php

	protected function update_sessions( $sessions ) {
		if ( $sessions ) {
			update_user_meta( $this->user_id, 'session_tokens', $sessions );
		} else {
			delete_user_meta( $this->user_id, 'session_tokens' );
		}
	}


Top ↑

Changelog

Changelog
VersionDescription
4.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.