the_content内のDIVタグでoEmbed-embeddedビデオをラップする方法?


9

ビデオチュートリアルのある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>

私は正規表現を介して分割しようとしましたが、混乱しました。

回答:


16

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>';
}

-3

WordPressテーマテンプレートでoEmbedを使用する場合は、次のことを試してください。

<aside>
    <p>oEmbed video in template test</p>
    <?php echo apply_filters('the_content', "http://vimeo.com/41205967"); ?>
</aside>

このスニペットは、Vimeo.comのビデオをテーマに直接表示します。手動で投稿を作成する必要はありません。


ビデオは投稿に埋め込まれています。それが問題でした。
ネクタイ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.