How do I change all locations to cities on home page
<div id="home-regs">
<h2><?php _e('All locations', 'sigma'); ?></h2>
<div class="wrap">
<?php $regions = RegionStats::newInstance()->listRegions('%%%%', '>', 'i_num_items DESC'); ?>
<?php $i = 1; ?>
<?php foreach($regions as $r) { ?>
<?php if($i <= 20) { ?>
<div><a href="<?php echo osc_search_url(array('page' => 'search', 'sRegion' => $r['pk_i_id']));?>"><i class="fas fa-location-arrow"></i> <span><?php echo $r['s_name']; ?></span> <em>(<?php echo $r['i_num_items']; ?>)</em></a></div>
<?php $i++; ?>
<?php } ?>
<?php } ?>