How to show taxonomy image instead of taxonomy name on a list
i managed to fix it without plugin , just saved in the theme image path pict with taxonomz slug name .png and this code modification <footer class=”article-footer” style=”text-align:center;”> <?php //$terms= apply_filters( ‘taxonomy-images-list-the-terms’, ”, array(‘taxonomy’ => ‘custom_cat’,)); ?> <?php //print_r( $terms); ?> <?php $terms = get_the_terms( $post->ID, ‘custom_cat’ ); $numcat=sizeof($terms); foreach ( $terms as $term ) … Read more