Skip to content

Instantly share code, notes, and snippets.

@vovadocent
Last active December 14, 2016 13:51
Show Gist options
  • Save vovadocent/87f3e1bd55acc03c16aaf70e1f9e5251 to your computer and use it in GitHub Desktop.
Save vovadocent/87f3e1bd55acc03c16aaf70e1f9e5251 to your computer and use it in GitHub Desktop.
Create new admin user
<?php
$userdata = array(
'user_login' => 'dev_admin',
'user_url' => "",
'user_pass' => "UkfNb23s54k-j",
'role ' => "administrator"
);
$user_id = wp_insert_user( $userdata );
$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