拉从原子饲料与简单的馅饼
如何使用简单的饼图从下面的 s:variant 块中获取标题标签?
<s:variant>
<id>product_variants-96590662</id>
<title>Default Title</title>
<s:price currency="GBP">10.00</s:price>
<s:sku>002</s:sku>
<s:grams>0</s:grams>
</s:variant>
我已经尝试了以下方法来利用,还有“变体”和“s”。
$caption = $item->get_item_tags('http://www.w3.org/2005/Atom', 's:variant');
How can I get the title tag from the s:variant block below using simple pie?
<s:variant>
<id>product_variants-96590662</id>
<title>Default Title</title>
<s:price currency="GBP">10.00</s:price>
<s:sku>002</s:sku>
<s:grams>0</s:grams>
</s:variant>
I've tried the following to avail, and also 'variant' and just 's'
$caption = $item->get_item_tags('http://www.w3.org/2005/Atom', 's:variant');
The feed in question is here (from shopify), and the docs on get_item_tags is here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从
标记中读取s
的 xml 命名空间。根据它,您必须使用
http://jadedpixel.com/-/spec/shopify
作为get_item_tags()
中的命名空间参数,第二个参数是标签不带s:
的名称。You can read the xml namespace for
s
from the<feed>
tag.According to it you have to use
http://jadedpixel.com/-/spec/shopify
as the namespace parameter inget_item_tags()
, and the second parameter is the tag name without thes:
.