Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

user contact method

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

	$user_contact_method['Phone'] = __( 'Phone', 'text_domain' );
	$user_contact_method['Twitter'] = __( 'Twitter', 'text_domain' );
	$user_contact_method['Facebook'] = __( 'Facebook', 'text_domain' );
	$user_contact_method['LinkedIn'] = __( 'LinkedIn', 'text_domain' );
	$user_contact_method['Other'] = __( 'Other', 'text_domain' );

	return $user_contact_method;

}

// Hook into the 'user_contactmethods' filter
add_filter( 'user_contactmethods', 'custom_user_contact_methods' );