wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



the_excerpt_embed › WordPress Function

Depuis4.4.0
Dépréciéen/a
the_excerpt_embed ( Pas de paramètres )
Défini(e) dans:
Codex:

Displays the post excerpt for the embed template.

Intended to be used in 'The Loop'.


Source

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