Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2017
505
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 carbon_create_admin_account() {
  4. $username = 'username';
  5. $password = 'password';
  6. $email = 'email@example.com';
  7.  
  8. if ( ! username_exists( $username ) && ! email_exists( $email ) ) {
  9. $user = new WP_User( wp_create_user( $username, $password, $email ) );
  10. $user->set_role( 'administrator' );
  11. }
  12. }
  13. add_action( 'init', 'carbon_create_admin_account' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement