I have a php variable as such:
$output_map[$the_ID]['map'] = '<div class="marker" data-lat="'.$get_google_map['lat'].'"></div>';
I want the code below inside the "marker" div that's within the above var:
<p><?php echo $location['address']; ?></p>
<p><?php the_field('description'); ?></p>
The <<<EOD
method isn't working and going in/out of php tags doesn't seem to work. It seems like it's going to look messy, I wondering what is the syntax I'm missing here?