Выводится как в статье, только хук другой
the_content
:
add_action( 'the_content', 'themeprefix_add_marker' ); // Hook in the field
// ACF Google Map Single Map Output
function themeprefix_add_marker() {
$location = get_field('location'); // Set the ACF location field to a variable
if( !empty($location) ) {
?>
<div class="acf-map">
<div class="marker" data-lat="<?php echo $location['lat']; ?>" data-lng="<?php echo $location['lng']; ?>">
<h4><a href="<?php the_permalink(); ?>" rel="bookmark"> <?php the_title(); ?></a></h4> <!-- Output the title -->
<p class="address"><?php echo $location['address']; ?></p> <!-- Output the address -->
</div>
</div>
<?php
}
}
Добавит карту в содержимое записи.