Wordpress将get_excerpt格式应用于字符串

时间:2012-03-22 16:10:12

标签: php wordpress

我想将wordpress'get_excerpt格式应用于我传递给它的字符串。

我知道标准的摘录只能在循环中起作用 - 但是我希望有一个函数或者我缺少的东西会在你不手动定义时产生摘录。

1 个答案:

答案 0 :(得分:2)

修正答案:

您需要wp_trim_words()。你是对的。 <{1}}对传递的字符串不起作用。

http://codex.wordpress.org/Function_Reference/wp_trim_words

wp_trim_excerpt()返回“我想申请[...]”

上一个回答:

WordPress使用wp_trim_words( "I would like to apply wordpress' get_excerpt format to a string I pass to it. I know the standard excerpt only works within the loop - but I'm hoping there is a function or something I'm missing that generates the excerpt when you don't manually define one.", 5, '[...]' );生成摘录。

http://codex.wordpress.org/Function_Reference/wp_trim_excerpt

在输出之前,您可能也希望对其进行一些过滤(取决于文本的来源)。