the_excerpt()
Display the post excerpt.
Source
File: wp-includes/post-template.php
function the_excerpt() {
/**
* Filters the displayed post excerpt.
*
* @since WP-0.71
*
* @see get_the_excerpt()
*
* @param string $post_excerpt The post excerpt.
*/
echo apply_filters( 'the_excerpt', get_the_excerpt() );
}
Changelog
Version | Description |
---|---|
WP-0.71 | Introduced. |