有条件地使用 wp_list_categories (Wordpress)
我在 WordPress 中使用 wp_list_categories 标签。 我想将其包装在一个条件中,以便仅在数据库中有帖子时使用它。比如:
if ($number_of_posts > "0") {
}
但我找不到一个可以让我计算帖子数量的函数。有人知道解决办法吗?
I am using the wp_list_categories tag in Wordpress.
I would like to wrap this in a condition so it is only used when there are posts in the database. Something like:
if ($number_of_posts > "0") {
}
But I can't find a function that'll let me count the number of posts. Anyone know the solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我将使用循环想法与查询帖子
之类的
希望这有帮助:)
i would use the loop idea with query posts
something like
Hope this helps :)
找到这个片段:
当按如下方式使用时,解决了我的问题:
Found this snippet:
Which when used as follows, solves my problem: