<?php
$categories = get_categories(array(
'orderby' => 'name',
'order' => 'ASC'
));
foreach( $categories as $category ){
echo '<a href="' . get_category_link( $category->term_id ) . '" class="category-box"> ';
echo '<div class="category-box-content"><h3>' . $category->name . '</h3></div></a>';
echo '<p>' . the_field('icon', 'category_' . $category->term_id) . '</p>';
}
?>