the_excerpt() – Display the post excerpt.

You appear to be a bot. Output may be restricted

Description

Displays the post excerpt.

Usage

the_excerpt();

Parameters

Returns

void

Source

File name: wordpress/wp-includes/post-template.php
Lines:

1 to 13 of 13
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() );
}
 

 View on GitHub View on Trac