<?php
$a=get_category_root_id(1);
$args=array(
'orderby' => 'id',
'hide_empty' => "0",
'child_of' => $a,//可以换为:'child_of' => '1', // 这个参数是什么,还在确认。
);
$categories=get_categories($args);
foreach($categories as $category) {
?>
<a href="<?php echo get_category_link( $category->term_id ) ?> ">
<?php echo get_the_category_by_ID( $category->term_id ) ?>
</a>
<?php }?>
暂无评论