WP_User::remove_cap( string $cap )
Remove capability from user.
Description Description
Parameters Parameters
- $cap
-
(string) (Required) Capability name.
Source Source
File: wp-includes/class-wp-user.php
public function remove_cap( $cap ) {
if ( ! isset( $this->caps[ $cap ] ) ) {
return;
}
unset( $this->caps[ $cap ] );
update_user_meta( $this->ID, $this->cap_key, $this->caps );
$this->get_role_caps();
$this->update_user_level_from_caps();
}
Expand full source code Collapse full source code View on Trac
Changelog Changelog
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |