the_excerpt_rss

函数


the_excerpt_rss ( No parameters )
定义位置
  • wp-includes/feed.php
    , line 225
引入
0.71
弃用

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