wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



the_excerpt_embed › WordPress Function

Desde4.4.0
Obsoleton/a
the_excerpt_embed ( Sem parâmetros )
Definido em:
Codex:

Displays the post excerpt for the embed template.

Intended to be used in 'The Loop'.


Fonte

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