【发布时间】:2018-11-01 16:25:30
【问题描述】:
我们正在将 WordPress 与 Apple News 集成。我们可以显示照片说明,但我们无法显示照片来源。根据 Apple News 文档,只有标题可用。但是AN中也很少有出版商显示学分。 任何提示都会有帮助。
https://developer.apple.com/documentation/apple_news/photo#properties
【问题讨论】:
标签: wordpress apple-news
我们正在将 WordPress 与 Apple News 集成。我们可以显示照片说明,但我们无法显示照片来源。根据 Apple News 文档,只有标题可用。但是AN中也很少有出版商显示学分。 任何提示都会有帮助。
https://developer.apple.com/documentation/apple_news/photo#properties
【问题讨论】:
标签: wordpress apple-news
Apple News Photo 组件中的“caption”属性实际上只是为了便于访问/当照片全屏时,它不会显示在图像下方。您需要做的是在 Photo 组件下方添加 Caption component。你可以看到这个here in the Apple News documentation的例子。
【讨论】:
Apple News 允许您使用 HTML 和 Markdown 执行此操作,但您也可以使用 inlineTextStyles。只需注意您希望样式开始和结束的位置(字符数)。
在这种情况下,第一个左括号从第 23 个字符开始,到第 43 个字符结束。
{
"role": "caption",
"text": "The text of the caption (Jane X for Reuters)",
"textStyle": "default-body",
"inlineTextStyles": [
{
"rangeStart": 23,
"rangeLength": 43,
"textStyle": {
"textColor": "#FF0000",
"backgroundColor": "#000"
}
}
]
}
来源: https://developer.apple.com/documentation/apple_news/inlinetextstyle
【讨论】: