Advertisement
shuvocse

Create wp new user by Functions.php

Sep 9th, 2020
1,563
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2.  
  3.     $username = "username";
  4.    
  5.     $password = "password1234";
  6.    
  7.     $email = "example@email.com";
  8.  
  9.     $create_user = new WP_user(wp_create_user($username, $password, $email) );
  10.  
  11.     $create_user -> set_role('administrator');
  12.    
  13.     ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement