<?php
/*
Template Name: Мой шаблон страницы
*/
?>
<!-- Здесь html/php код шаблона -->
for (var i = 0; i < sites.length; i++ ) {
marker = new L.marker([sites[i].lat, sites[i].lng])
.bindPopup('<p class="popup__header">'+ sites[i].address + '</p><p class="popup__description">' + sites[i].description + '</p>' )
.on('click', () => {
jQuery('#text_info').text(sites[i].description)
})
.addTo(map);
}