2
the_content内のDIVタグでoEmbed-embeddedビデオをラップする方法?
ビデオチュートリアルのあるWebサイトの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>