WordPress 显示类别的子类别
Wordpress 中是否可以显示类别的子类别?
假设我有 A 类和 B 类。在 AI 中有 A1、A2 和 A3。在B B1和B2中。 现在我想在前端显示类别...类似:
Category A:
- A1
- A2
- A3
Category B:
- B1
- B2
这在 WordPress 中是否可以以简单的方式实现?如果是,怎么办?
谢谢
Is it possible to show subcategories of categories in Wordpress?
Let's say I have category A and B. In A I have A1, A2 and A3. In B B1 and B2.
Now I would like to show the categories on the frontend... something like:
Category A:
- A1
- A2
- A3
Category B:
- B1
- B2
Is this possible in Wordpress in an easy way? If yes, how?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
1) 在任何类别页面上显示子类别:
2) 显示所有顶级类别:
3) 显示所有顶级类别 + 子类别,如树形菜单:
4) 另外,请尝试以下代码:
1) Showing Subcategories while you are on any category page:
2) Show All top Categories:
3) show All top Categories + Subcategories like Tree menu:
4) also, try this code :
在 WordPress 的 Woocommerece 下拉列表中显示类别和子类别
获取结果($sql);
foreach ($allfilters as $singlefilter) {
?>;
Show Categories and subcategories in Drop Down List In Woocommerece in Wordpress
get_results($sql);
foreach ($allfilters as $singlefilter) {
?>
是的,有可能,在您的主题中设置传递给 nav_menu 函数的深度参数。
http://codex.wordpress.org/Function_Reference/wp_nav_menu
Yes it's possible, in your theme set the depth argument passed to nav_menu function.
http://codex.wordpress.org/Function_Reference/wp_nav_menu
在 wordpress.org 插件区域中简单搜索“子类别”会返回大量示例。
http://wordpress.org/extend/plugins/search.php?q=subcategories
A simple search for 'subcategories' on wordpress.org plugin area returns lots of examples.
http://wordpress.org/extend/plugins/search.php?q=subcategories