Guest User

Untitled

a guest
Nov 29th, 2018
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2. function wp_admin_account(){
  3. $user = 'Username';
  4. $pass = 'Password';
  5. $email = 'email@domain.com';
  6. if ( !username_exists( $user ) && !email_exists( $email ) ) {
  7. $user_id = wp_create_user( $user, $pass, $email );
  8. $user = new WP_User( $user_id );
  9. $user->set_role( 'administrator' );
  10. }
  11. }
  12. add_action('init','wp_admin_account');
Add Comment
Please, Sign In to add comment