Skip to content

Instantly share code, notes, and snippets.

@alandbh
Last active February 23, 2016 18:47
Show Gist options
  • Save alandbh/7a45f2e879edd87f370f to your computer and use it in GitHub Desktop.
Save alandbh/7a45f2e879edd87f370f to your computer and use it in GitHub Desktop.
Copia ou clona um role user para um novo
/* ----------------
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