eur extra contact info
// Register User Contact Methods
function eur_user_contact_methods( $user_contact_method ) {
$user_contact_method['address'] = __( 'Address', 'easy-user-registration' );
$user_contact_method['city'] = __( 'City', 'easy-user-registration' );
$user_contact_method['country'] = __( 'Country', 'easy-user-registration' );
$user_contact_method['phone'] = __( 'Tel.', 'easy-user-registration' );
$user_contact_method['phone_alt'] = __( 'Alt. Phone', 'easy-user-registration' );
return $user_contact_method;
}
add_filter( 'user_contactmethods', 'eur_user_contact_methods' );