如何从wordpress帖子内容中获取iframe

时间:2016-09-01 10:38:27

标签: wordpress

我发布了像iframe一样的帖子

<iframe src="//player.vimeo.com/video/71287888?byline=0&amp;portrait=0" width="900" height="450" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.

在上面,i帧需要与内容区分开来。我只喜欢

<iframe src="//player.vimeo.com/video/71287888?byline=0&amp;portrait=0" width="900" height="450" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>

那么,我如何获得内容的视频iframe。

1 个答案:

答案 0 :(得分:0)

我能够自己获得解决方案。 这是代码

$vcont = eevee_content(40);
$videoframe = explode("</iframe>",$vcont);
echo $videoframe[0]."</iframe>";

通过eevee_content功能,我能够获得内容。之后,它会将字符串分解为数组,然后使用$videoframe[0]

获取iframe