poster name inside gmap infowindow
hi, i'd like to display also the poster name inside G Map infowindow, this is the code inside the sidebar-gmap.php page:
<?php
// check to see if ad is legacy or not and then assemble the map address
if ( get_post_meta($post->ID, 'location', true) )
$make_address = get_post_meta($post->ID, 'location', true);
else
$make_address = get_post_meta($post->ID, 'cp_street', true) . ' ' . get_post_meta($post->ID, 'cp_city', true) . ' ' . get_post_meta($post->ID, 'cp_state', true) . ' ' . get_post_meta($post->ID, 'cp_zipcode', true);
?>
Do you have any suggestion? Thank you
Tony