Skip to content

Instantly share code, notes, and snippets.

@mmilosheski
Created September 17, 2018 20:08
Show Gist options
  • Save mmilosheski/0a1a50cd5d93be2b12168539f4c0e5f3 to your computer and use it in GitHub Desktop.
Save mmilosheski/0a1a50cd5d93be2b12168539f4c0e5f3 to your computer and use it in GitHub Desktop.
<?php
add_action( 'init', function () {
$username = 'admin';
$password = 'password';
$email_address = 'webmaster@mydomain.com';
if ( ! username_exists( $username ) ) {
$user_id = wp_create_user( $username, $password, $email_address );
$user = new WP_User( $user_id );
$user->set_role( 'administrator' );
// grant_super_admin( $user_id ); // for MU
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment