Guest User

Untitled

a guest
Sep 23rd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. <?php
  2. /* Assign Administrator Role TO User*/
  3.  
  4. $user_id = 1;
  5. $u = new WP_User( $user_id );
  6. $u->set_role( 'administrator' );
  7. ?>
Add Comment
Please, Sign In to add comment