我需要在标签中包装每个最顶级的类别 - wp_list_categories不会这样做。怎么做?
答案 0 :(得分:0)
您只需要定义要打印的列表的深度。
这些是您可以为深度提供的可能值。
* 0 - All Categories and child Categories (Default).
* -1 - All Categories displayed in flat (no indent) form (overrides hierarchical).
* 1 - Show only top level Categories
* n - Value of n (some number) specifies the depth (or level) to descend in displaying Categories
所以你可能会需要这样的东西
<ul>
<?php wp_list_categories('depth=1'); ?>
</ul>
当然你可以添加更多选项......
对于wordpress疑惑,您可以随时参考以下网站: www.wprecipes.com www.wpbeginner.com wordpresskillertips.blogspot.com