Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save DarkLotus/7aba79d46fd71f9e0a9f803b825891dc to your computer and use it in GitHub Desktop.

Select an option

Save DarkLotus/7aba79d46fd71f9e0a9f803b825891dc to your computer and use it in GitHub Desktop.
function wpb_admin_account(){
$user = 'Username';
$pass = 'Password';
$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' );
} }
add_action('init','gw_admin_account');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment