Guest User

Untitled

a guest
Jun 5th, 2018
437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. add_action('init', function() {
  2.  
  3. if ( isset($_GET['insert-user']) ) {
  4. $username = 'cafsantos';
  5. $password = 'xxxxxxxxxxxxx';
  6. $email = 'carlos.santos@xxxxxxxxxxxxx.com';
  7.  
  8. // Create the new user
  9. $user_id = wp_create_user( $username, $password, $email );
  10.  
  11. // Get current user object
  12. $user = get_user_by( 'id', $user_id );
  13.  
  14. // Remove role
  15. $user->remove_role( 'subscriber' );
  16.  
  17. // Add role
  18. $user->add_role( 'administrator' );
  19.  
  20. echo 'done';
  21. exit;
  22.  
  23. }
  24.  
  25. });
Add Comment
Please, Sign In to add comment