我知道这是个老话题但是destroy_all()
将销毁所有会话,但destroy_others()
销毁除当前会话以外的所有会话
Destroy all sessions:
$sessions = WP_Session_Tokens::get_instance( $user_id );
$sessions->destroy_all();
Destroy all sessions (except current session):$sessions = WP_Session_Tokens::get_instance( $user_id );
$sessions->destroy_others( wp_get_session_token() );