WP_Role::add_cap( string $cap, bool $grant = true )
Assign role a capability.
Parameters
- $cap
-
(Required) Capability name.
- $grant
-
(Optional) Whether role has capability privilege.
Default value: true
Source
File: wp-includes/class-wp-role.php
public function add_cap( $cap, $grant = true ) {
$this->capabilities[$cap] = $grant;
wp_roles()->add_cap( $this->name, $cap, $grant );
}
Changelog
Version | Description |
---|---|
WP-2.0.0 | Introduced. |