web-dev-qa-db-fra.com

Comment intégrer la vidéo intégrée oEmbed dans les balises DIV dans the_content?

Je fais un thème Wordpress pour un site Web avec des tutoriels vidéo. Je voudrais mettre la vidéo qui est incorporée dans le contenu (avec oEmbed ) dans un div à part.

Un exemple

Le contenu complet (sortie de the_content()) ressemble à ceci:

<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>

Et je voudrais obtenir ceci à:

<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

Le filtre embed_oembed_html s'exécute avant la sortie du code HTML d'une ressource oEmbed. Vous pouvez donc vous y accrocher et envelopper la sortie dans une div comme ci-dessous. Je ne peux pas penser à un moyen simple pour emballer l'autre contenu.

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