WP_Session_Tokens::destroy_all_for_all_users()

Destroy all session tokens for all users.


Source

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

	final public static function destroy_all_for_all_users() {
		/** This filter is documented in wp-includes/class-wp-session-tokens.php */
		$manager = apply_filters( 'session_token_manager', 'WP_User_Meta_Session_Tokens' );
		call_user_func( array( $manager, 'drop_sessions' ) );
	}


Changelog

Changelog
Version Description
WP-4.0.0 Introduced.