Try this
<div id="home-regs">
<h2><?php _e('All locations', 'sigma'); ?></h2>
<div class="wrap">
<?php $countries = CountryStats::newInstance()->listCountries('>', 'items DESC'); ?>
<?php $i = 1; ?>
<?php foreach($countries as $c) { ?>
<?php if($i <= 20) { ?>
<div><a href="<?php echo osc_search_url(array('page' => 'search', 'sCountry' => $c['country_code'])); ?>"><i class="fas fa-location-arrow"></i> <span><?php echo $c['country_name']; ?></span> <em>(<?php echo $c['items']; ?>)</em></a></div>
<?php $i++; ?>
<?php } ?>
<?php } ?>
</div>
</div>
Anyway, generally for countries, use of stats class may not be needed.