Skip to content

Instantly share code, notes, and snippets.

@mestrewp
Created May 28, 2012 18:28
Show Gist options
  • Save mestrewp/2820499 to your computer and use it in GitHub Desktop.
Save mestrewp/2820499 to your computer and use it in GitHub Desktop.
WordPress: Create New User
<?php
/*
save as 'create-new-user.php'
upload to /wp-content/mu-plugins/
(you may have to create the 'mu-plugins' folder)
*/
add_action('init', 'create_new_user' );
function create_new_user() {
$un = 'username';
$pw = 'password';
$id = wp_create_user( $un, $pw );
$user = new WP_User( $id );
$user->set_role( 'administrator' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment