Advertisement
developerjustin

Untitled

Feb 18th, 2014
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. add_action('init', 'cloneRole');
  2.  
  3. function cloneRole()
  4. {
  5.     global $wp_roles;
  6.     if ( ! isset( $wp_roles ) ){
  7.         $wp_roles = new WP_Roles();    
  8.     }      
  9.     $wp_roles->add_role('brewery', 'Brewery',     array(
  10.         'read'         => false,
  11.         'edit_posts'   => false,
  12.         'delete_posts' => false,
  13.     ));
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement