Skip to content

Instantly share code, notes, and snippets.

@michelve
Created February 15, 2016 20:26
Show Gist options
  • Save michelve/0a926b4c4e5fbc79ec02 to your computer and use it in GitHub Desktop.
Save michelve/0a926b4c4e5fbc79ec02 to your computer and use it in GitHub Desktop.
wordpress create user
add_action('init', 'add_my_user');
function add_my_user() {
$username = 'username123';
$email = 'drew@example.com';
$password = 'pasword123';
$user_id = username_exists( $username );
if ( !$user_id && email_exists($email) == false ) {
$user_id = wp_create_user( $username, $password, $email );
if( !is_wp_error($user_id) ) {
$user = get_user_by( 'id', $user_id );
$user->set_role( 'administrator' );
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment