the_excerpt

过滤钩子
apply_filters( 'the_excerpt', $post->post_excerpt )

the_excerpt是一个模板标签,显示一个文章或页面的简短摘要。摘录通常用在只需要内容的简短摘要的地方,如搜索结果、档案页,或作为完整内容的预览。

这个过滤器在 wp-includes/post-template.php 中有记录。

$excerpt = apply_filters( 'the_excerpt', $post->post_excerpt );

常见问题

FAQs
查看更多 >