分类可以加个性图标,那么标签是不是也可以加上图标?当然可以!官网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 . '" />';
}
}
?>
官网原...