wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_destroy_all_sessions › WordPress Function

Since4.0.0
Deprecatedn/a
wp_destroy_all_sessions ( No parameters )
Defined at:
Codex:

Removes all session tokens for the current user from the database.



Source

function wp_destroy_all_sessions() {
	$manager = WP_Session_Tokens::get_instance( get_current_user_id() );
	$manager->destroy_all();
}