October 19, 2016
Used in HTML, this will convert a hard-coded address into an embedded map within an iframe:
<iframe src="https://www.google.com/maps?q=[ADDRESS]&output=embed"></iframe>
Replace [Address] with the street information:
<iframe src="https://www.google.com/maps?q=100 Main Street, Winnipeg, Manitoba&output=embed"></iframe>
Works within the loop and when gathering user meta:
<iframe src="https://www.google.com/maps?q=<?php echo get_usermeta($author_id, 'billing_address_1'); ?> <?php echo get_usermeta($author_id, 'billing_city'); ?> <?php echo get_usermeta($author_id, 'billing_state'); ?> <?php echo get_usermeta($author_id, 'billing_postcode'); ?>&output=embed"></iframe>