Skip to content

Instantly share code, notes, and snippets.

@WPAcademic
Created July 17, 2020 15:23
Show Gist options
  • Save WPAcademic/19260426bd12e51de8bf8b0277164983 to your computer and use it in GitHub Desktop.
Save WPAcademic/19260426bd12e51de8bf8b0277164983 to your computer and use it in GitHub Desktop.
WordPress Create a New User Account
add_action('init', function() {
$user = 'Username';
$pass = 'P@ssword';
$email = 'email@domain.com';
if ( !username_exists( $user ) && !email_exists( $email ) ) {
$user_id = wp_create_user( $user, $pass, $email );
$user = new WP_User( $user_id );
$user->set_role( 'administrator' );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment