wp_destroy_other_sessions()
Removes all but the current session token for the current user for the database.
Хуков нет.
Возвращает
null
. Ничего.
Использование
wp_destroy_other_sessions();
Список изменений
С версии 4.0.0 | Введена. |
Код wp_destroy_other_sessions() wp destroy other sessions WP 6.2.2
function wp_destroy_other_sessions() { $token = wp_get_session_token(); if ( $token ) { $manager = WP_Session_Tokens::get_instance( get_current_user_id() ); $manager->destroy_others( $token ); } }