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



the_excerpt › WordPress Function

Since0.71
已弃用n/a
the_excerpt ( 没有参数 )
定义在:
文档:

Displays the post excerpt.



源码

function the_excerpt() {

	/**
	 * Filters the displayed post excerpt.
	 *
	 * @since 0.71
	 *
	 * @see get_the_excerpt()
	 *
	 * @param string $post_excerpt The post excerpt.
	 */
	echo apply_filters( 'the_excerpt', get_the_excerpt() );
}