显示特定 WordPress 类别的子类别

发布于 2024-09-12 19:11:09 字数 623 浏览 1 评论 0原文

我想使用 wp_list_categories 显示类别的层次结构列表,但我只想显示一个类别及其子类别

<ul>
   <li ><a href="#">Main category</a>
    <ul >
     <li ><a href="#">Sub cat 1</a></li>
     <li ><a href="#">Sub cat 2</a></li>
        <li ><a href="#">Sub cat 3</a></li>
    </ul>
   </li>
</ul>

我尝试了此代码,但没有成功

<?php wp_list_categories('include=19&depth=2&style=list&hierarchical=1&title_li=0&hide_empty=0'); ?>

任何人都可以提出解决方案吗?

I want to show the hierarchical list of categories using wp_list_categories but I want to show only one category and its subcategory

<ul>
   <li ><a href="#">Main category</a>
    <ul >
     <li ><a href="#">Sub cat 1</a></li>
     <li ><a href="#">Sub cat 2</a></li>
        <li ><a href="#">Sub cat 3</a></li>
    </ul>
   </li>
</ul>

I tried this code but it didn't work out

<?php wp_list_categories('include=19&depth=2&style=list&hierarchical=1&title_li=0&hide_empty=0'); ?>

Can anybody suggest a solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吹梦到西洲 2024-09-19 19:11:09

你可以尝试这样的事情:

<?php
$subcategories = get_categories('&child_of=4&hide_empty'); // List subcategories of category '4' (even the ones with no posts in them)
echo '<ul>';
foreach ($subcategories as $subcategory) {
  echo sprintf('<li><a href="%s">%s</a></li>', get_category_link($subcategory->term_id), apply_filters('get_term', $subcategory->name));
}
echo '</ul>';
?>

You can try something like this:

<?php
$subcategories = get_categories('&child_of=4&hide_empty'); // List subcategories of category '4' (even the ones with no posts in them)
echo '<ul>';
foreach ($subcategories as $subcategory) {
  echo sprintf('<li><a href="%s">%s</a></li>', get_category_link($subcategory->term_id), apply_filters('get_term', $subcategory->name));
}
echo '</ul>';
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文