Uses
Uses | Description |
---|---|
wp-includes/user.php: update_user_meta() | Update user meta field based on user ID. |
wp-includes/user.php: delete_user_meta() | Remove metadata matching criteria from a user. |
Updates the user’s sessions in the usermeta table.
(array) (Required) Sessions.
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' ); } }
Version | Description |
---|---|
4.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_user_meta_session_tokens/update_sessions