PHP: WP - Categories
<h5>Categories</h5>
<ul class="footer__list large-block-grid-3 medium-block-grid-3 small-block-grid-2">
<?php wp_list_categories( array(
'depth' => 1, // SHOW TOP LEVEL CATEGORIES ONLY
'title_li' => '',
'hide_empty' => 1,
'order_by' => 'count'
) ); ?>
</ul>