Salve a tutti,
avrei la necessità di rendere dinamico il valore della latitudine e il valore della longitudine in javascript
var locations = [
{lat: 44.54826, lng: 10.78962},
{lat: 44.48417, lng: 10.68832},
{lat: 44.531754, lng: 10.775572}
]
in php ottengo questi dati così
<?php
$term_id = 4;
$taxonomy_name = 'appartamento';
$term_children = get_term_children( $term_id, $taxonomy_name );
foreach ( $term_children as $child ) {
$term = get_term_by( 'id', $child, $taxonomy_name );
echo the_field('longitudine', $term);
echo the_field('latitudine', $term);
} ?>
Sono alle prime armi !!!
Grazie 1.000