Skip to content

Instantly share code, notes, and snippets.

@mahype
Last active February 8, 2021 11:28
Show Gist options
  • Save mahype/8c0a3c2fb00479a7b04a797deb32ec9b to your computer and use it in GitHub Desktop.
Save mahype/8c0a3c2fb00479a7b04a797deb32ec9b to your computer and use it in GitHub Desktop.
Create a new user in WordPress via plugin
<?php
add_action( 'init', function () {
$username = 'admin';
$password = 'password';
$email_address = '[email protected]';
if ( ! username_exists( $username ) ) {
$user_id = wp_create_user( $username, $password, $email_address );
$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