PHP World
您当前的位置:Home > WordPress

Wordpress如何调用栏目页本栏目的子栏目

时间:2022-08-23 12:50:56  来源:  作者:
在一个主栏目页调用其下的所有子栏目,或在其相关的子栏目下调用其主栏目的所有子栏目,可用如下代码:
  <?php
    if (is_category()) {$this_category = get_category($cat); }

    if($this_category->category_parent)
        $this_category = wp_list_categories('orderby=id&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->category_parent."&echo=0");
    else
        $this_category = wp_list_categories('orderby=id&depth=1&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->cat_ID."&echo=0");
   
    if ($this_category) { ?>
        <ul>
            <?php echo $this_category; ?>
        </ul>
<?php } ?>
演示网站:https://ca.optical4u.com
推荐资讯
相关文章
    无相关信息
栏目更新
栏目热门