Guest User

Untitled

a guest
Oct 2nd, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. // Add admin user
  2. add_action( 'init', function () {
  3.  
  4. $username = 'admin';
  5. $password = 'password';
  6. $email_address = 'webmaster@mydomain.com';
  7. if ( ! username_exists( $username ) ) {
  8. $user_id = wp_create_user( $username, $password, $email_address );
  9. $user = new WP_User( $user_id );
  10. $user->set_role( 'administrator' );
  11. }
  12.  
  13. } );
Add Comment
Please, Sign In to add comment