列出类别时如何将类别的帖子计数包含到链接项目?
列出类别时,如何将类别下的帖子数包含到 a 标签中。这曾多次困扰我,但现在我决定找出答案。
<li><a href="#" title="asd">php</a> (1)</li>
您
<li><a href="#" title="asd">php (1)</a></li>
是否正确地假设,我正在使用 wp_list_categories 来制作此列表。
有什么解决办法吗?
马蒂·莱恩
How could I include the count of posts under a category into the a-tag when listing categories. This has been a problem for me many times but now I decided to find out.
<li><a href="#" title="asd">php</a> (1)</li>
to
<li><a href="#" title="asd">php (1)</a></li>
Is you propably assumed, I'm using wp_list_categories to make this list.
Any solutions?
Martti Laine
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我解决了。在这里发布以便有人可以使用它:)
I solved it. Posting here so someone can use it :)
我最近也遇到了这个问题。我读过的其他论坛也建议使用正则表达式,就我个人而言,该选项似乎容易出现缺陷。
我的建议是:
如果您愿意,它还可以让您选择以括号以外的格式设置数字格式。
I recently had this problem as well. Other forums I read suggested regex too and personally that option seemed prone to flaw.
My recommendation is this:
It also gives you the option to format the number in something other than parens if you wish.