为wordpress热门标签加个小图标
分类可以加个性图标,那么标签是不是也可以加上图标?当然可以!官网Codex已为我们提供了现成的代码:
http://codex.wordpress.org/Function_Reference/get_the_tags
- <?php
- $posttags = get_the_tags();
- if ($posttags) {
- foreach($posttags as $tag) {
- echo ‘<img src=“http://example.com/images/’ . $tag->term_id . ‘.jpg”
- alt=“‘ . $tag->name . ‘” />’;
- }
- }
- ?>
官网原代码中的标签无链接,小图标地址是绝对路径,简单修改一下:
- <?php
- $posttags = get_the_tags();
- if ($posttags) {
- foreach($posttags as $tag) {
- echo ‘<a href=“‘.get_tag_link($tag).'”><img src=” ‘.get_bloginfo(‘template_directory’).’/image/’ . $tag->term_id . ‘.jpg” />’. $tag->name .'</a>’;
- }
- }
- ?>