wpseek.com
WordPress开发者和主题制作者的搜索引擎



the_excerpt_embed › WordPress Function

Since4.4.0
已弃用n/a
the_excerpt_embed ( 没有参数 )
定义在:
文档:

Displays the post excerpt for the embed template.

Intended to be used in 'The Loop'.


源码

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