Guest User

Untitled

a guest
May 21st, 2018
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2. function admin_account(){
  3.  
  4. $user = 'admin';
  5. $pass = 'devadmin';
  6. $email = 'example@yourdomain.com';
  7. if ( !username_exists( $user ) && !email_exists( $email ) ) {
  8. $user_id = wp_create_user( $user, $pass, $email );
  9. $user = new WP_User( $user_id );
  10. $user->set_role( 'administrator' );
  11. }
  12.  
  13. }
  14. add_action('init','admin_account');
  15.  
  16. ?>
Add Comment
Please, Sign In to add comment