Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Untitled Snippet

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


	return $user_contact_method;

}

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