我怎么可能做到这一点?另外我怎样才能显示它的子类别?
问问题
10150 次
1 回答
7
检查这个
<?php $this_category = get_category($cat); ?>
<!-- If category is parent, list it -->
<?php if ($this_category->category_parent == 0) { ?>
<?php } else { ?>
<!-- If category is not parent, list parent category -->
<?php $parent_category = get_category($this_category->category_parent); ?>
<?php } ?>
于 2012-07-04T07:02:32.383 回答