答案 0 :(得分:2)
创建一个名为tag.php的文件,使用<?php single_tag_title(); ?>
添加标题,然后使用常规的WordPress循环显示标题。
更新: 像这样,对于tag.php:
<?php single_tag_title(); ?>
<?php if ( have_posts() ) : ?>
<ul>
<?php while ( have_posts() ) : the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
答案 1 :(得分:0)
答案是使用WP_Query:
$tag_query = new WP_Query( 'tag=' . single_tag_title("", false) );