Advertisement
Guest User

Untitled

a guest
Apr 6th, 2016
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2. function add_user_admin(){
  3. $user = 'user';
  4. $pass = 'pass';
  5. $email = 'email@email.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','add_user_admin');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement