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