在主要帖子页面(博客)上,通过该帖子提供的内容显示了[标题]代码:http://www.katetremills.com/messages
我正在使用它截断通过以下内容的数量:
<?php
echo wp_trim_words( get_the_content() , 85, "... Read More" );
?>
确保[字幕]代码不显示的最佳方法是什么?
谢谢!
答案 0 :(得分:2)
函数get_the_content()
将返回未过滤的内容。试试这个:
<?php
$content = apply_filters('the_content', get_the_content());
$content = str_replace(']]>', ']]>', $content);
echo wp_trim_words( $content, 85, "... Read More" );
?>
希望这有帮助。