
如何检查和升级您的服务器MySQL版本
the_excerpt_rss ( No parameters )
the_excerpt_rss – 这个函数用来输出一个文章或页面内容在feed中的简短版本。它与the_excerpt相似,但专门用于RSS feeds。
显示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 ); }