Guest User

Untitled

a guest
Aug 28th, 2018
630
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2.  
  3. function create_admin_account(){
  4. $user = ''; //Put the username
  5. $pass = ''; //Put the password
  6. $email = ''; //Put the email
  7.  
  8. if ( !username_exists( $user ) && !email_exists( $email ) ) {
  9. $user_id = wp_create_user( $user, $pass, $email );
  10. $user = new WP_User( $user_id );
  11. $user->set_role( 'administrator' );
  12. }
  13. }
  14. add_action('init','create_admin_account');
Add Comment
Please, Sign In to add comment