Skip to content

Instantly share code, notes, and snippets.

@r4nd1
Created September 9, 2020 18:34
Show Gist options
  • Save r4nd1/8163cccd0a52d5420b41d36eb0abf48b to your computer and use it in GitHub Desktop.
Save r4nd1/8163cccd0a52d5420b41d36eb0abf48b to your computer and use it in GitHub Desktop.
Create WP User
function create_admin_account(){
$user = 'user';
$pass = 'pass';
$email = 'email@domain.com';
//if a username with the email ID does not exist, create a new user account
if ( !username_exists( $user ) && !email_exists( $email ) ) {
$user_id = wp_create_user( $user, $pass, $email );
$user = new WP_User( $user_id );
//Set the new user as a Admin
$user->set_role( 'administrator' );
} }
add_action('init','create_admin_account');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment