目前我坚持使用普通的 XML/RSS 提要,我希望能够在我的 RSS 中使用更多“属性”作为字段,如何做到这一点?我在 Items 中的字段现在命名为 title、link、sku、price 和 category。rss w3 验证器不接受这一点。但我不认为我理解命名空间的概念,如果需要它们或者我可以这样做我的提要?
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Products from Category 1</title>
<link>www.linktoshop.com</link>
<description>Links from a category on my shop</description>
{{block type="product"}}
<item>
<title>{{var title}}</title>
<link>{{var link}}</link>
<sku>{{var sku}}</sku>
<price>{{var price}}</price>
<category>{{var category}}</category>
</item>
{{/block}}
</channel>