Show tag icons instead of tag text in wordpress
I would like show tag icons instead of tag icons. As an example, Instead of开发者_Go百科 the tag text "Photoshop" I would like to show Photoshop icon. Any help would be cordially appreciated.
You probably will need to make an icon for each tag, then use the tag name to build a path to the icon.
<img src="/icons/<?php echo $tagName; ?>.png" />
you could do that with tag images plugin
精彩评论