如何在 WordPress 中列出类别和子类别
如果类别也有 0 个帖子,如何在 wordpress 中显示所有类别和子类别。我尝试过,但它显示的类别中至少有 1 个帖子。我想显示也有 0 个帖子的类别。
谢谢
How to display all CATEGORIES and SUB-CATEGORIES in wordpress if a category having 0 posts also. I tried but it is displaying categories which are having at least 1 post in a category . I want to display categories which are having 0 posts also.
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
参见get_categories函数,有一个参数叫“hide_empty”。例如:
See the get_categories function, there is a parameter called "hide_empty". For instance:
使用 get_categories() 函数获取所有类别。
将所有类别存储在变量中后,使用 print_r 查看可以使用的数组的所有值。
当你使用 print_r 时,你会看到这样的
代码,你会得到你想要的。
use get_categories() function to get all categories.
after you have stored all categories in a variable use print_r to see all the values of the array that you can use.
when you use print_r you will see like this
play with the code and you will get what you want.