我的主题有一个自定义分类模板(“taxonomy-authors.php)但WordPress仅在调用与此分类法关联的术语时提供此模板文件。例如,example.com/cpt/authors/john-doe
加载示例时。com/cpt/authors/it将返回404。我想要它做的是在示例中列出与分类法“作者”相关的所有术语。请求com/cpt/authors/。
这是我的一部分taxonomy-authors.php 文件:
<?php
if (have_posts()) :
?>
<h2>List of Authors</h2>
<?php
$terms = get_terms(\'authors\');
foreach ($terms as $term) {
echo $term->name;
}
endif;
?>
有没有关于如何解决这个问题的建议?
最合适的回答,由SO网友:Tom J Nowell 整理而成
没有分类法归档这样的东西。有一个分类术语归档,但没有分类归档。
E、 g.此URL在当前系统中没有意义:
example.com/category/
但这确实:
example.com/category/uncategorised/