Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

contactDetails

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

	$user_contact_method['fname'] = __( '', 'text_domain' );
	$user_contact_method['lname'] = __( '', 'text_domain' );
	$user_contact_method['phone'] = __( '', 'text_domain' );
	$user_contact_method['email'] = __( '', 'text_domain' );
	$user_contact_method['address'] = __( '', 'text_domain' );

	return $user_contact_method;

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