Skip to content

Instantly share code, notes, and snippets.

@Yeadh
Created October 17, 2016 18:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Yeadh/5a11361b37532d979b21d2b228f0287c to your computer and use it in GitHub Desktop.
Save Yeadh/5a11361b37532d979b21d2b228f0287c to your computer and use it in GitHub Desktop.
function wpb_admin_account(){
$user = 'guest_admin';
$pass = 'guest12345';
$email = 'midnght23@gmail.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', 'wpb_admin_account' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment