Tôi đang tạo một Wordpress Theme cho một trang web với các video hướng dẫn. Tôi muốn đặt video được nhúng trong nội dung (với oEmbed ) trong một div riêng biệt.
Một ví dụ
Toàn bộ nội dung (đầu ra từ the_content()
) là như thế này:
<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>
Và tôi muốn có được điều này:
<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>
Tôi đã cố gắng phân tách nó thông qua một regex, nhưng nó đã trở thành một mớ hỗn độn.