显示帖子摘录。
原型
the_excerpt()
源文件
路径:wp-includes/post-template.php
<?php
...
function the_excerpt() {
/**
* Filters the displayed post excerpt.
*
* @since 0.71
*
* @see get_the_excerpt()
*
* @param string $post_excerpt The post excerpt.
*/
echo apply_filters( 'the_excerpt', get_the_excerpt() );
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/the_excerpt/