WP_Role::add_cap( string $cap, bool $grant = true )
Assign role a capability.
Description
Parameters
- $cap
-
(string) (Required) Capability name.
- $grant
-
(bool) (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 |
---|---|
2.0.0 | Introduced. |
Example
NB: This setting is saved to the database, so it might be better to run this on theme/plugin activation
Expand full source codeCollapse full source code
To add capability to specific user :