Questions tagged «oembed»

2
如何将嵌入的视频包装在the_content内的DIV标签中?
我正在为带有视频教程的网站制作Wordpress主题。我想将嵌入内容(带有oEmbed)的视频放在一个单独的div中。 一个例子 完整的内容(来自的输出the_content())是这样的: <p><iframe src="http://player.vimeo.com/video/0000000" width="900" height="506" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p> <p>This is an Test of a tutorial. Bla bla bla</p> 我想得到这个: <div id="video"> <iframe src="http://player.vimeo.com/video/0000000" width="900" height="506" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> </div> <div id="content"> <p>This is an Test of a tutorial. Bla bla bla</p> </div>
9 filters  oembed 

2
当oEmbed失败时,显示替代
我想指定当oEmbed失败时将显示的替代图像。 具体用例是在中国(或其他国家)阻止YouTube时提供替代方案。我们知道YouTube内容在那里不可用,但是在这种情况下,我们想提供一个备用图片。 为此,可以使oEmbed错误代码可访问吗?
8 oembed 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.