Как можно сделать такую сортировку в wp?
Мой код который выводит все города выглядит так:
<?php
global $wp_query;
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$query = new WP_Query(array(
'post_type' => 'otkuda', # тип записи
'post_status' => 'publish', # статус записи
'paged' => $paged,
'posts_per_page' => -1,
'orderby' => 'title',
'order' => 'ASC'
));
if ($query->have_posts()):
while ($query->have_posts()):
$query->the_post();
?>
<div class="other__item">
<?php $marshrut = get_field('marshrut', $post->ID); ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="other_link"><?php echo $marshrut['geo_from']['city_from']; ?></a>
</div>
<?php endwhile;
wp_reset_query();
wp_reset_postdata();
endif; ?>