Create image placeholder for post tags used in loop

Description

Use this code inside the loop, change the src of the image path, create tags with mathching .pngs using the id of the tag for example 9.png would be for tag id number 9

Use this code inside the loop, change the src of the image path, create tags with mathching .pngs using the id of the tag for example 9.png would be for tag id number 9

PHP Source Code

                        
                          <?php foreach((get_the_tags()) as $tag) { echo '<img src="http://if-media.com/wp-content/themes/ifmediaonepage/img/tagimgs/' . $tag->term_id . '.png" alt="' . $tag->name . '" title="' . $tag->name . '" />'; } ?>                        
                        


Post Categories