Acf afficher l'image de taxonomie

Exemples de code

0
0

acf afficher l'image de taxonomie

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

Pages connexes

Pages d'exemples similaires

Dans d'autres langues

Cette page est dans d'autres langues

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