add image files on wordpress custom taxonomy acf code example

Example 1: acf show the taxonomy image

<?php
    $terms = get_the_terms( get_the_ID(), 'product_brands' );

       if( ! empty( $terms ) ) : ?>
           <ul>	
		<?php foreach( $terms as $term ) : ?>
						    	 
		 <li class="<?php echo $term->slug; ?>">
															
                    <img src="<?php the_field('brand_logo', $term); ?>" />
		  
                 </li>

  <?php endforeach; ?>
          </ul> 
<?php
   endif;
?>

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']; ?>" />

Tags:

Php Example