是否可以创建一个tag.php
模板,当您导航到该 urlwww.domain.com/tag/architecture/
时,它将显示所有已使用该特定标签标记的自定义帖子?等等各种其他标签?
我需要在模板中包含哪些代码?
是的,您可以创建,下面是我用来显示自定义帖子类型“知识”的代码
<?php
global $query_string;
$posts = query_posts($query_string.'&post_type=knowledge');
if ( have_posts() ) while ( have_posts() ) : the_post();
?>
<a href="<?php echo get_permalink(get_the_ID()); ?>"><?php the_title(); ?></a>
<?php endwhile; // end of the loop. ?>
这将帮助您了解模板的层次结构:
http://codex.wordpress.org/images/1/18/Template_Hierarchy.png
可在此处使用 $query_string(示例):
https://developer.wordpress.org/reference/functions/query_posts/