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



comment_text_rss › WordPress Function

Since1.0.0
已弃用n/a
comment_text_rss ( 没有参数 )
定义在:
文档:

Displays the current comment content for use in the feeds.



源码

function comment_text_rss() {
	$comment_text = get_comment_text();
	/**
	 * Filters the current comment content for use in a feed.
	 *
	 * @since 1.5.0
	 *
	 * @param string $comment_text The content of the current comment.
	 */
	$comment_text = apply_filters( 'comment_text_rss', $comment_text );
	echo $comment_text;
}