Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sumanengbd/b1ff5858efb44085851240b95187658d to your computer and use it in GitHub Desktop.
Save sumanengbd/b1ff5858efb44085851240b95187658d to your computer and use it in GitHub Desktop.
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