如何从Wordpress发布内容获取HTML代码?

时间:2016-11-25 15:15:11

标签: php html wordpress

我想从Wordpress中的帖子内容中解压缩所有html标签。

<iframe src="https://www.facebook.com/plugins/video.php?href=https%3A%2F%2Fwww.facebook.com%2FRocketsAreCool%2Fvideos%2F1032994553496742%2F&show_text=0&width=560" width="560" height="315" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true" allowFullScreen="true">

当我尝试这段代码时:

$query = new WP_Query(array('name'=>'example_topic'));
$post = $query->posts;
$text = htmlspecialchars_decode($post->content);

它可以工作,但是没有关闭html标签,因为标签最初没有在编码标签中关闭,所以每件事都是在浏览器中没有显示之后。

0 个答案:

没有答案