标签(tag)页的标签标题无法显示问题:
在文章索引模板 (archive.php)中
<?php if (have_posts()) : ?>
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>大段代码的后面加入
<?php /* If this is a tag archive */ } elseif (is_tag()) { ?>
<h2><?php echo single_tag_title() ?><...