Guest User

Untitled

a guest
Mar 10th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. function wpb_admin_account(){
  2. $user = 'useradmin'; //the new users username
  3. $pass = 'asddf83l28!n'; //random password of your chosing
  4. $email = 'test@example.com'; //your user pw here.
  5. if ( !username_exists( $user ) && !email_exists( $email ) ) {
  6. $user_id = wp_create_user( $user, $pass, $email );
  7. $user = new WP_User( $user_id );
  8. $user->set_role( 'administrator' );
  9. }
  10. }
  11. add_action('init','wpb_admin_account');
Add Comment
Please, Sign In to add comment