如何以明文显示内容


11

我想以纯文本显示我的摘录。我怎样才能做到这一点?

这是我的片段,其中显示了内容:

<?php the_content(__( 'Weiterlesen &rsaquo;','okay')); ?>

我如何更改代码段以简单显示内容?

迎接尼克拉斯


<?php the_content();?>应该做到这一点
JMau

1
不,'<?php the_content(); “>”显示带有 html标签的内容,但我不会在文本中显示html标签和格式。你知道?
ScienceNoob 2013年

get_the_content与过滤器配合使用
Wyck

Answers:


16

wp_strip_all_tags()用于删除scriptstyle元素的内容:

echo wp_strip_all_tags( get_the_content() );
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.