acf-field-address
acf-field-address copied to clipboard
Address Microformat
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 `
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"] );