Adds capability and grant or deny access to capability.
Parameters
$cap
stringrequired- Capability name.
$grant
booloptional- Whether to grant capability to user.
Default:
true
Source
public function add_cap( $cap, $grant = true ) {
$this->caps[ $cap ] = $grant;
update_user_meta( $this->ID, $this->cap_key, $this->caps );
$this->get_role_caps();
$this->update_user_level_from_caps();
}
Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.