wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



the_excerpt › WordPress Function

Da0.71
Deprecaton/a
the_excerpt ( Nessun parametro )
Definito a:
Codex:

Displays the post excerpt.



Sorgenti

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