我正在使用精选视频Plus插件用视频替换特色图片(the_post_thumbnail)。但该视频未在Facebook Instant Articles上显示。它只是检测和显示特色图像,而不是视频。
任何人都有解决方案吗?谢谢!
插件:https://wordpress.org/plugins/featured-video-plus/
代码检测:
<figure>
<img src="img-url-here.jpg"/>
</figure>
答案 0 :(得分:0)
你可以试试这个..
<?php $post_id = get_the_ID();?>
<figure>
<img src="<?php echo get_the_post_video_url( $post_id );?>"/>
</figure>