Forums
Home / Plugin: Advanced Category and Custom Taxonomy Image / How display image on single.php
(@taher2016)
4 years, 5 months ago
I try to display taxonomy images on single post using <?php get_taxonomy_image(1455); ?>, but images don’t show. How does slove this issue?
<?php get_taxonomy_image(1455); ?>
(@sajjad67)
the function get_taxonomy_image() return the image tag.. you have to echo/print it…try <?php echo get_taxonomy_image(1455); ?>
get_taxonomy_image()
<?php echo get_taxonomy_image(1455); ?>