是否显示按父/子层次结构排序的自定义分类术语?

时间:2013-07-26 作者:Jochen Schmidt

我有一个带有自定义分类法的自定义帖子类型(在我的网站上显示一些“最佳实践”示例)。在single post页面(single bestpractice.php)上,我想显示如下所有术语(类别):

Parent: 孩子,孩子,孩子

我尝试了以下代码:

$customPostTaxonomies = get_object_taxonomies(\'bestpractice\');
if (count($customPostTaxonomies) > 0) {
    foreach ($customPostTaxonomies as $tax) {
        $args = array(
            \'orderby\' => \'name\',
            \'show_count\' => 0,
            \'pad_counts\' => 0,
            \'hierarchical\' => 1,
            \'taxonomy\' => $tax,
            \'title_li\' => \'\'
        );  
        wp_list_categories( $args );
    }
}
其输出:

孩子,孩子,父母,孩子,

…那么,是否有办法按父/子级对其进行排序,并使父级以“:”开头,并删除最后一个子级的“,”?

thanx,Jochen

1 个回复
SO网友:Pete

你可能喜欢关注这篇文章,因为它看起来本质上是一样的。。。Display the Terms from a Custom Taxonomy Assigned to a Post(inside the loop) in Hierarchial Order

结束

相关推荐

使用Get_the_Terms拉入分类链接?

我对获取当前帖子类别(自定义分类法公文包类别)的get\\u the\\u terms php有问题。我可以成功进入最后一类。如果查看此页面,您将看到顶部的链接:http://www.slarc.com/portfolio-view/central-control-building-east-texas/ 这些链接是通过get\\u the\\u ters\\u列表拉入的,但这些链接没有:www.slarc。com/it前面的项目。在那里我需要它跳转到一个具有相同段塞的页面。这就是为什么我开始使用下面的代