acf-field-address icon indicating copy to clipboard operation
acf-field-address copied to clipboard

Address Microformat

Open indianabenny opened this issue 9 years ago • 1 comments

It would be great to set this up the option for this plugin to save and/or render code using the address/vcard microformat:

`

Technorati 665 3rd St. Suite 207 San Francisco, CA 94107 United States
`

indianabenny avatar Jan 28 '16 18:01 indianabenny

You can add your own if you want. Just pull out the data separately using the Array, and use this code to get started:

$address    = get_field( 'full_address', 'option' );
printf( '<div class="address">%s<br> %s, %s %s</div>', $address["street1"], $address["city"], $address["state"], $address["zip"] );

JennyWren avatar Mar 25 '16 18:03 JennyWren