1
目前我被簡單的XML/RSS提要卡住了,我希望能夠在RSS中使用更多的「屬性」作爲字段,這怎麼辦?項目中的我的字段現在被命名爲標題,鏈接,sku,價格和類別。這不被rss w3驗證器接受。但是我不認爲我理解命名空間的概念,並且如果需要它們,或者我可以用這種方法來做我的饋送?用於出口的產品的RSS提要
<?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>