描述
返回最多55个单词,必要时添加省略号。
插件、主题使用‘excerpt_length’过滤器可以修改55字限制。插件、主题使用‘excerpt_more’过滤器可以修改“[…]”字符串。
参数
- $text
-
(string)(可选) 摘录。如果设置为空,则生成摘录。
默认值: ''
- $post
-
(WP_Post|object|int)(可选) WP_Post实例或文章ID/对象。
默认值: null
返回
(string) 摘录
源码
更新日志
版本 | 描述 |
---|---|
5.2.0 | 添加了$post 参数。 |
1.5.0 | 开始引入 |
使用示例
如果我们已经有了摘录,只想将其缩减为较小的量,请使用以下方法:
echo "Here is short info about post: \n" . wp_trim_excerpt($excerpt);
如果没有,您只需要使用这样的代码,请注意$id是文章的id
echo "Here is short info about post: \n" . wp_trim_excerpt("",$id);