WP_Roles::add_cap( string $role, string $cap, bool $grant = true )
Add capability to role.
Parameters
- $role
-
(Required) Role name.
- $cap
-
(Required) Capability name.
- $grant
-
(Optional) Whether role is capable of performing capability.
Default value: true
Source
File: wp-includes/class-wp-roles.php
public function add_cap( $role, $cap, $grant = true ) {
if ( ! isset( $this->roles[$role] ) )
return;
$this->roles[$role]['capabilities'][$cap] = $grant;
if ( $this->use_db )
update_option( $this->role_key, $this->roles );
}
Changelog
Version | Description |
---|---|
WP-2.0.0 | Introduced. |