web-dev-qa-db-ja.com

OEmbed埋め込みビデオを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>
8
TV productions

embed_oembed_html フィルタはoEmbedリソースのHTMLが出力される前に実行されるので、これにフックして以下のように出力をdivでラップすることができます。他のコンテンツをラップする簡単な方法を考えることはできません。

add_filter('embed_oembed_html', 'my_embed_oembed_html', 99, 4);
function my_embed_oembed_html($html, $url, $attr, $post_id) {
  return '<div id="video">' . $html . '</div>';
}
16
Richard M