Acf show the taxonomy image

Code examples

0
0

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;
?>

Similar pages

Similar pages with examples

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................