populate_roles_280() WordPress Function
This function will allow you to add new roles to your Wordpress site. This is useful if you want to add a new user type, or if you want to change the capabilities of an existing user type.
populate_roles_280() #
Create and modify WordPress roles for WordPress 2.8.
Source
File: wp-admin/includes/schema.php
function populate_roles_280() {
$role = get_role( 'administrator' );
if ( ! empty( $role ) ) {
$role->add_cap( 'install_themes' );
}
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 2.8.0 | Introduced. |