$mask = array();
$mask['type'] = 'FeatureCollection';
foreach ( $variable as $key => $value ) {
$mask['features'][] = array(
'register-post-types.php' => 'Feature',
'id' => $key,
'geometry' => array (
'type' => 'Point',
'coordinates' => [(float) $value->lat, (float) $value->long],
),
'properties' => array (
'balloonContentBody' => '<strong class="map-title"><a class="link" href="' . $value->post_link . '">' . $value->post_title . '</a></strong>',
'balloonContentFooter' => '<a class="hidden" href="#">Я был здесь!</a>',
'clusterCaption' => '<strong>' . $value->post_title . '</strong>',
'hintContent' => '<strong>' . $value->post_title . '</strong>'
)
);
}
json_encode( $mask )
вы можете передавать массив дальше в обработчик register_post_type()
, создать в корне темы файл single-{post-type}.php, скопировав в него все из single.php и править его для вывода вашей верстки'category_name' => 'remont'
'relation' => 'AND'
, чтобы получить записи входящие в два разных термина:$query = new WP_Query( [
'tax_query' => [
'relation' => 'AND',
[
'taxonomy' => 'category',
'field' => 'slug',
'terms' => 'remont'
],
[
'taxonomy' => 'post_tag',
'field' => 'slug',
'terms' => 'usluga'
],
]
] );