我想从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标签,因为标签最初没有在编码标签中关闭,所以每件事都是在浏览器中没有显示之后。