0

在主帖子页面(博客)上,通过那里提供的内容显示 [caption] 代码:http ://www.katetremills.com/messages

我正在使用它来截断通过以下内容馈送的内容量:

<?php 
    echo wp_trim_words( get_the_content() , 85, "... Read More" ); 
?>

确保不显示 [caption] 代码的最佳方法是什么?

谢谢!

4

1 回答 1

2

函数get_the_content()将返回未过滤的内容。尝试使用这个:

<?php
$content = apply_filters('the_content', get_the_content());
$content = str_replace(']]>', ']]&gt;', $content);

echo wp_trim_words( $content, 85, "... Read More" ); 
?>

希望这可以帮助。

于 2014-04-03T09:44:52.360 回答