我们正在整合WordPress和苹果新闻。我们可以显示照片标题,但无法显示照片字幕。根据Apple News文档,只有标题可用。但是也有很少的出版商在展示片尾。任何提示都是有帮助的。
https://developer.apple.com/documentation/apple_news/photo#properties

发布于 2019-03-28 23:06:21
Apple News Photo组件中的"caption“属性实际上只是为了便于访问/当照片是全屏显示时,它不会显示在图像下面。相反,您需要做的是在照片组件下创建一个Caption component。您可以看到此here in the Apple News documentation的示例。
发布于 2020-10-18 02:24:42
Apple News允许你使用超文本标记语言和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
https://stackoverflow.com/questions/53105366
复制相似问题