显示特定帖子的标记页面 时间:2014-06-10 作者:jpan 我将如何编写通用标记。显示带有特定标记的所有帖子的php页面?例如,如果我导航到示例。com/tag/your标签,它应该显示所有带有“your tag”标签的帖子。 1 个回复 SO网友:Abhineet Verma 创建标记。php&;将其保存在主题目录中。这是wordpress的默认行为。所以你不必与之斗争。<?php if ( have_posts() ) : // Start the Loop. while ( have_posts() ) : the_post(); // Do your stuff here such as below the_title(); the_content(); endwhile; else: echo \'No Post Found\'; endif; ?> 结束 文章导航