PHP code snippet – 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']; ?>" />
<?php // get the current taxonomy term $term = get_queried_object(); // vars $image = get_field('cat_image', $term); ?> <img src="<?php echo $image['url']; ?>" />