Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Añadir formas de contacto a los usuarios

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

	$user_contact_method['skype'] = __( 'Skype', 'josuezarco_formas_contact' );
	$user_contact_method['instagram'] = __( 'Instagram', 'josuezarco_formas_contact' );
	$user_contact_method['linkedin'] = __( 'Linkedin', 'josuezarco_formas_contact' );

	return $user_contact_method;

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