0

我使用以下代码显示子类别列表:

<?php
if (is_category()) {
$this_category = get_category($cat);
}
if($this_category->category_parent)
$this_category = wp_list_categories('orderby=id&title_li=&child_of='.$this_category->category_parent."&echo=0"); else
$this_category = wp_list_categories('orderby=id&title_li=&child_of='.$this_category->cat_ID."&echo=0");
if ($this_category) { ?>
<?php echo $this_category; ?>
<?php } ?>

如何在 2 列中显示子类别?

4

1 回答 1

0

Wordpress 通过这些功能为您提供大量内容。它们为您提供了许多功能来使用此内容,但如果您遇到困难并且没有任何功能符合您的需求,请随意创建自己的功能。

在这里,尝试您的对象 $this_category 的 var_dump(),并查看结果。

然后,您应该能够使用此内容以您想要的方式显示您的类别。

于 2012-09-05T13:26:59.680 回答