我使用以下代码打印出特定帖子的内容(本例中为103):
<?php $post_id = 103; $queried_post = get_post($post_id); echo apply_filters('the_content',$queried_post->post_content); ?>
如何让它排除<p>
和<br>s
等所有html标签,只显示文字?
谢谢!
答案 0 :(得分:4)
使用strip_tag(string)函数从字符串
中删除所有html标记echo strip_tags(apply_filters('the_content',$queried_post->post_content));