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



the_excerpt_rss › WordPress Function

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

Displays the post excerpt for the feed.



源码

function the_excerpt_rss() {
	$output = get_the_excerpt();
	/**
	 * Filters the post excerpt for a feed.
	 *
	 * @since 1.2.0
	 *
	 * @param string $output The current post excerpt.
	 */
	echo apply_filters( 'the_excerpt_rss', $output );
}