从 WordPress RSS 源获取每个帖子的标签
给定一个 WordPress RSS 提要,我想知道如何获取每个帖子的所有标签。据我所知,每个标签都有一个类似
的条目。我正在使用 PHP 的 SimpleXmlElement。
谢谢。
Given a Wordpress RSS feed, I would like to know how can I get all the tags for each post. As far as I can see, for each tag there's an entry like this <category><![CDATA[ ]]></category>
. I'm using PHP's SimpleXmlElement.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
SimpleXMLElement::xpath
来执行此操作。因此:这里唯一的缺点是您必须一次只能传递一项的 XML。如果您知道要使用哪些项目,请将第一个项目更改为
$x->channel->item[0]->xpath('.//category')
, ETC。You can use
SimpleXMLElement::xpath
to do this. So:The only disadvantage here is you must pass the XML for only one item at a time. If you know which items you wish to use, change it to
$x->channel->item[0]->xpath('.//category')
for the first item, etc.