Ich erstelle ein Wordpress-Theme für eine Website mit Video-Tutorials. Ich möchte das Video, das in den Inhalt eingebettet ist (mit oEmbed ), in ein separates Div einfügen .
Ein Beispiel
Der vollständige Inhalt (Ausgabe von the_content()
) ist ungefähr so:
<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>
Und ich möchte dies dazu bringen:
<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>