wordpress featured image taxonomy code example
Example 1: wordpress featured image show
<?php echo the_post_thumbnail(); ?>
Example 2: 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']; ?>" />