wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



the_excerpt_embed › WordPress Function

Seit4.4.0
Veraltetn/v
the_excerpt_embed ( Keine Parameter )
Definiert in:
Codex:

Displays the post excerpt for the embed template.

Intended to be used in 'The Loop'.


Quellcode

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