how to get category image in wordpress code example
Example: how to display the taxonomy image in wordpress
<?php
// get the current taxonomy term
$term = get_queried_object();
// vars
$image = get_field('cat_image', $term);
?>
<img src="<?php echo $image['url']; ?>" />