Viewing 1 replies (of 1 total)
  • Alain

    (@alainotjens)

    try this:

    <?php 
    
    $terms = apply_filters( 'taxonomy-images-get-the-terms', '', array('taxonomy' => 'your_taxonomy_name') );
    
    foreach( (array) $terms as $term) {
    echo wp_get_attachment_image( $term->image_id, 'your_image_size' );
    echo $term->name;
    } 
    
    ?>
Viewing 1 replies (of 1 total)
  • The topic ‘Display Term Name Using "taxonomy-images-list-the-terms"’ is closed to new replies.