我可以在即时文章中添加视频(保存在自定义字段“ video_url”中),但该视频显示在上。我需要它出现而不是特色图像。
我用来在其中添加视频的代码
add_action( 'instant_articles_after_transform_post', function ($ia_post) {
$instant_article = $ia_post->instant_article;
$post_id = $ia_post->get_the_id();
$video_url = get_post_meta( $post_id, 'video_url', true );
$instant_article->addChild(
Facebook\InstantArticles\Elements\Video::create()->withURL($video_url) );
});