Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Contact

contact

// Register User Contact Methods
function custom_user_contact_methods( $user_contact_method ) {

	$user_contact_method['address'] = __( 'Address', 'resophone' );
	$user_contact_method['cp'] = __( 'Code postal', 'resophone' );
	$user_contact_method['ville'] = __( 'Ville', 'resophone' );
	$user_contact_method['mail'] = __( 'E mail', 'resophone' );
	$user_contact_method['tel'] = __( 'Téléphone', 'resophone' );

	return $user_contact_method;

}
add_filter( 'user_contactmethods', 'custom_user_contact_methods' );