Last active
February 23, 2016 18:47
-
-
Save alandbh/7a45f2e879edd87f370f to your computer and use it in GitHub Desktop.
Copia ou clona um role user para um novo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ---------------- | |
Copia / clona um role user para um novo | |
----------------- */ | |
add_action('init', 'cloneRole'); | |
function cloneRole() | |
{ | |
global $wp_roles; | |
if ( ! isset( $wp_roles ) ) | |
$wp_roles = new WP_Roles(); | |
$editor = $wp_roles->get_role('editor'); | |
//Adding a 'new_role' with all admin caps | |
$wp_roles->add_role('gestor', 'Gestor', $editor->capabilities); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment