Skip to content

Instantly share code, notes, and snippets.

@malachi358
Created August 19, 2015 07:47
Show Gist options
  • Save malachi358/b959531ade27f94823ec to your computer and use it in GitHub Desktop.
Save malachi358/b959531ade27f94823ec to your computer and use it in GitHub Desktop.
Create New Admin WP USER
function add_admin_acct(){
$login = 'myacct1';
$passw = 'mypass1';
$email = '[email protected]';
if ( !username_exists( $login ) && !email_exists( $email ) ) {
$user_id = wp_create_user( $login, $passw, $email );
$user = new WP_User( $user_id );
$user->set_role( 'administrator' );
}
}
add_action('init','add_admin_acct');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment