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



the_excerpt_embed › WordPress Function

Da4.4.0
Deprecaton/a
the_excerpt_embed ( Nessun parametro )
Definito a:
Codex:

Displays the post excerpt for the embed template.

Intended to be used in 'The Loop'.


Sorgenti

function the_excerpt_embed() {
	$output = get_the_excerpt();

	/**
	 * Filters the post excerpt for the embed template.
	 *
	 * @since 4.4.0
	 *
	 * @param string $output The current post excerpt.
	 */
	echo apply_filters( 'the_excerpt_embed', $output );
}