我在这里引用了我的代码:How to display a listing template of a certain taxonomy?
我正在尝试创建一个页面模板,该模板将列出“servicecats”分类法中的所有类别,该分类法链接到自定义帖子类型“Services”。
在页面模板中,我使用了上面链接中的代码:
<?php
$taxonomy = \'servicecats\';
$orderby = \'name\';
$show_count = 0; // 1 for yes, 0 for no
$pad_counts = 0; // 1 for yes, 0 for no
$hierarchical = 1; // 1 for yes, 0 for no
$title = \'\';
$args = array(
\'taxonomy\' => $taxonomy,
\'orderby\' => $orderby,
\'show_count\' => $show_count,
\'pad_counts\' => $pad_counts,
\'hierarchical\' => $hierarchical,
\'title_li\' => $title
);
?>
<?php wp_list_categories( $args ); ?>
当我查看页面时,它只会说“没有类别”,虽然我已经设置了4个类别,但分类法和帖子类型都是分层的。
有什么建议吗?谢谢