我想为不止一位作者的播客创建一个 RSS 提要。我要不要写
<item>
...
<itunes:author>Person 1, Person 2</itunes:author>
...
</item>
或者
<item>
...
<itunes:author>Person 1</itunes:author>
<itunes:author>Person 2</itunes:author>
...
</item>
?
如果允许多个作者姓名,它们将嵌套在一般作者父级中,就像这样(或类似的东西):
<itunes:authors>
<itunes:author>Person 1</itunes:author>
<itunes:author>Person 2</itunes:author>
</itunes:authors>
规范文档(http://www.apple.com/itunes/podcasts/specs.html#author)声明了一个 itunes:author 元素,这意味着您问题中的选项 1 是要走的路:
<item>
...
<itunes:author>Person 1, Person 2</itunes:author>
...
</item>
您始终可以通过在线验证工具测试您的提要:http: //feedvalidator.org/