comment_text_rss

函数
comment_text_rss ( No parameters )

comment_text_rss: 这个函数返回当前评论的文本,格式化后显示在 RSS feed 中。

显示当前的评论内容,以便在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;
}

常见问题

FAQs
查看更多 >