WordPress 类别和子类别
我正在对我的博客主题进行一些更改,当用户位于父类别内时,我需要列出子类别,例如:
- main-category -- 子目录1 -- subcat2
因此,仅当用户位于主类别内时,我才需要显示 subcat1 和 subcat2。目前我有 2 个 div,一个用于主类别(这是我需要用户在所有页面上看到的内容),另一个 div 在主类别 div 下方显示子类别。
这可能吗?我对我的英语感到抱歉,如果这太混乱了,请告诉我。
感谢您抽出时间。 问候
I am doing some changes on my blog theme, and i need to list the subcategories when user is inside the parent category, example:
- main-category
-- subcat1
-- subcat2
So i need to show the subcat1 and subcat2 only when the user is inside main-category. At this moment i have 2 divs, one for the main-categories (this is what i need users to see on all pages) and one div bellow the main-category div to show the subcategories.
Is this possible? I am sorry for my English, let me know if this is too confuse.
Thanks for your time.
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,可以使用 get_the_category() 和 wp_list_categories() 与
child_of
参数。在您的主类别页面上使用类似以下内容:Yes, it's possible using get_the_category() and wp_list_categories() with the
child_of
parameter. Use something like the following on your main-category page:尝试使用函数
}}} $html .='';
return $html;}
为了获取更多的孩子,只需添加新变量并获取她的 child_of 的类别
try with a function
<?php echo list_categories(); ?>
}}} $html .='';
return $html;}
for get more childrens only add the new variable and get the categories of her child_of