Simplepie 和斜杠:评论
我使用 SimplePie 在我的页面上显示 RSS 源。 现在我想显示评论数量。
RSS:
<slash:comments>0</slash:comments>
我怎样才能用 Simplepie 来展示这个?
I use SimplePie to display an RSS Feed on my Page.
Now I want to show the number of comments.
The RSS:
<slash:comments>0</slash:comments>
How can I show this with Simplepie?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要使用
$item->get_item_tags()
来做到这一点。据猜测,您需要http://purl.org/rss/1.0/modules/slash/
命名空间,以及comments
标记。然后您可以查看此数据结构以找出您需要的内容。猜测一下...
You want to use
$item->get_item_tags()
to do this. At a guess, you want thehttp://purl.org/rss/1.0/modules/slash/
namespace, with thecomments
tag.You can then take a look at this data structure to work out what you need. At a guess...