如何更改嵌入YouTube视频的缩略图?

时间:2017-12-12 作者:cag8f

当我在页面上嵌入Youtube视频时,有没有办法更改显示的缩略图(screenshot)? 我没有访问Youtube视频的管理员权限。

如果可能的话,我更喜欢非插件解决方案。我发现these instructions, 但它们没有起作用。

2 个回复
最合适的回答,由SO网友:Nicolai Grossherr 整理而成

这个[video] shortcode 可与一起使用src 是youtube视频的URL。要设置占位符,请使用预览缩略图poster, 它甚至可以通过GUI很好地工作。最后,它应该看起来有点像下面的示例。

[video src="https://www.youtube.com/watch?v=XYZ" poster="http://example.com/wp-content/uploads/2017/01/example.jpg"]

SO网友:dig99

看看这个,也许这会有帮助。


<div class="video-responsive"><iframe src="https://www.youtube-nocookie.com/embed/1Cz2Xzm6knM/videoseries?list=PLq-1Cz2Xzm6knM-1Cz2Xzm6knM&amp;rel=0" width="420" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe></div>


.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

结束

相关推荐

Use oEmbed for static html

我正在尝试添加jQuery插件(https://github.com/rmanivannan/speedometer-jquery-plugin) 到Wordpress页面(不是post),但是插件的行为不符合预期。我认为这可能与使用我的Wordpress主题生成页面时脚本引用、css引用和Javascript被破坏的方式有关。是否可以:-将包含控件的静态HTML页面上载到子域-使用oEmbed将静态HTML页面包括在Wordpress页面中i、 e.子域将是主域的oEmbed提供程序?