• Resolved suge1w

    (@suge1w)


    Great plugin!

    Images show perfectly for categories but I’m struggling to get them to display with tags.

    This is my category code:

    <b>
     <?php foreach (get_the_category() as $cat) : ?>
     <img src="<?php echo z_taxonomy_image_url($cat->term_id, 'medium'); ?>"width="20px" height="12px" style="vertical-align:middle"/>
     <a href="<?php echo get_category_link($cat->term_id); ?>"><?php echo $cat->cat_name; ?></a>
     <?php endforeach; ?></b>

    Can anyone help?

    Thanks.

    https://www.ads-software.com/plugins/categories-images/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Having the same problem. Appears great for categories and custom taxonomies, but nothing for tags.

    Plugin Author Muhammad

    (@elzahlan)

    It is easy, you can use the following code:

    <ul>
     <?php foreach (get_the_terms(get_the_ID(), 'post_tag') as $cat) : ?>
     <li>
     <img src="<?php echo z_taxonomy_image_url($cat->term_id, 'medium'); ?>" />
     <a href="<?php echo get_term_link($cat->term_id, 'your_taxonomy'); ?>"><?php echo $cat->name; ?></a>
     </li>
     <?php endforeach; ?>
    </ul>

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Show images for tags’ is closed to new replies.