WP_User::remove_all_caps()publicWP 2.1.0

Removes all of the capabilities of the user.

Method of the class: WP_User{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_User = new WP_User();
$WP_User->remove_all_caps();

Notes

  • Global. wpdb. $wpdb WordPress database abstraction object.

Changelog

Since 2.1.0 Introduced.

WP_User::remove_all_caps() code WP 6.5.2

public function remove_all_caps() {
	global $wpdb;
	$this->caps = array();
	delete_user_meta( $this->ID, $this->cap_key );
	delete_user_meta( $this->ID, $wpdb->get_blog_prefix() . 'user_level' );
	$this->get_role_caps();
}