Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

user contact

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

	$user_contact_method['Telephone'] = __( 'Telephone', 'text_domain' );
	$user_contact_method['Linkedin'] = __( 'Linkedin URL', 'text_domain' );
	$user_contact_method['Twitter'] = __( 'Twitter URL', 'text_domain' );
	$user_contact_method['Facebook'] = __( 'Facebook URL', 'text_domain' );

	return $user_contact_method;

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