Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

User Contact Info

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

	$user_contact_method['doc_address'] = __( 'Address', 'diocese_theme' );
	$user_contact_method['doc_city'] = __( 'City', 'diocese_theme' );
	$user_contact_method['doc_state'] = __( 'State', 'diocese_theme' );
	$user_contact_method['doc_phone'] = __( 'Phone', 'diocese_theme' );
	$user_contact_method['doc_fax'] = __( 'Fax', 'diocese_theme' );

	return $user_contact_method; ;

}

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