从wordpress打印的内容中删除HTML代码

时间:2013-06-27 17:10:10

标签: php wordpress

我使用以下代码打印出特定帖子的内容(本例中为103):

<?php $post_id = 103; $queried_post = get_post($post_id); echo apply_filters('the_content',$queried_post->post_content); ?>

如何让它排除<p><br>s等所有html标签,只显示文字?

谢谢!

1 个答案:

答案 0 :(得分:4)

使用strip_tag(string)函数从字符串

中删除所有html标记
echo strip_tags(apply_filters('the_content',$queried_post->post_content));