• Resolved Michael D

    (@michael-divine)


    I am using this plugin https://woocommerce.com/products/custom-product-tag-image/ To add images to my tags. I’d like to display a list of tags with their associated images. I’ve tried so many approaches but nothing yet.

    Here’s my code which outputs a list of tags but no images.

    <?php foreach ( $terms as $term ) { ?>
    <div class="item" > 
    <?php get_the_post_thumbnail( $page->ID, 'thumbnail' ); ?>
    <a href="<?php echo get_term_link( $term->term_id, 'product_tag' ); ?> " rel="tag"><?php echo $term->name; ?></a>
        </div>
    <?php } ?>

    Suggestions?

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Get product tag thumbnail’ is closed to new replies.