Skip to content

Instantly share code, notes, and snippets.

@PawelGIX
Created July 18, 2022 09:24
Show Gist options
  • Save PawelGIX/43841cd80f5db443b8f89c6f0fa72dce to your computer and use it in GitHub Desktop.
Save PawelGIX/43841cd80f5db443b8f89c6f0fa72dce to your computer and use it in GitHub Desktop.
Create WP admin user by PHP
<?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