【发布时间】:2021-03-12 11:26:54
【问题描述】:
我有一个祖父母类别,其中包含这样的子孙:
- 祖父母猫
- 儿童猫 01
- 孙子猫 01
- 孙子猫 02
- 孙子猫 03
- 儿童猫 02
- 孙子猫 01
- 孙子猫 02
- 孙子猫 03
- 儿童猫 01
我想在主祖父母类别页面上循环浏览这些内容,并显示每个子标题,并在下方显示孙链接。
到目前为止,我有这个显示所有子孙,但没有区分两者......
<?php
$this_category = get_category($cat);
$args = (array (
'orderby'=> 'id',
'depth' => '1',
'show_count' => '0',
'child_of' => $this_category->cat_ID,
'echo' => '0'
));
$categories = get_categories( $args );
foreach ( $categories as $category ) {
echo $category->name
} ?>
如果有孩子,我需要一个规则...
【问题讨论】:
标签: wordpress loops foreach categories