wpseek.com
A WordPress-centric search engine for devs and theme authors



the_excerpt › WordPress Function

Since0.71
Deprecatedn/a
the_excerpt ( No parameters )
Defined at:
Codex:

Displays the post excerpt.



Source

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() );
}