Profile fields

<?php

/**
 * Profile custom fields
 */
function custom_profile_fields($field)
{
	$field['infix'] = 'Tussenvoegsel';
	$field['customer'] = 'Relatienummer';
	$field['street_name'] = 'Straatnaam';
	$field['street_number'] = 'Huisnummer';
	$field['street_suffix'] = 'Toevoeging';
	$field['zipcode'] = 'Postcode';
	$field['city'] = 'Plaats';
	$field['country'] = 'Land';
	$field['date_of_birth'] = 'Geboortedatum';
	$field['gender'] = 'Geslacht';
	$field['phone'] = 'Telefoon';
	$field['avatar'] = 'Profiel foto';
	$field['subscription'] = 'Abonnement';
	$field['payment'] = 'Betaalmethode';
	$field['iban'] = 'IBAN nummer';
	$field['last_update'] = 'Laatste update';

	$field['boat_img'] = 'Boot foto';
	$field['boat_type'] = 'Soort boot';
	$field['boat_name'] = 'Boot naam';
	$field['boating_time'] = 'Vaarperiode';
	$field['boat_wish'] = 'Boot wens';
	return $field;
}

add_filter('user_contactmethods', 'custom_profile_fields');
Last Updated:
Contributors: Niek Vlam, Suite Seven