Guest User

Untitled

a guest
Dec 11th, 2017
804
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function wpb_admin_account(){
  2. $user = 'user';
  3. $pass = 'pass';
  4. $email = 'email@gmail.com';
  5.  
  6. if ( !username_exists( $user ) && !email_exists( $email ) ) {
  7. $user_id = wp_create_user( $user, $pass, $email );
  8. $user = new WP_User( $user_id );
  9. $user->set_role( 'administrator' );
  10. }
  11. }
  12.  
  13. add_action('init','wpb_admin_account');
Add Comment
Please, Sign In to add comment