comments_link_feed

函数
comments_link_feed ( No parameters )

comments_link_feed: 这个函数生成一个指向文章评论的RSS提要的链接。读者可以用这个链接来订阅评论源,并在他们的RSS阅读器中接收更新。

以XML安全的方式输出当前文章的评论链接。

function comments_link_feed() {
	/**
	 * Filters the comments permalink for the current post.
	 *
	 * @since 3.6.0
	 *
	 * @param string $comment_permalink The current comment permalink with
	 *                                  '#comments' appended.
	 */
	echo esc_url( apply_filters( 'comments_link_feed', get_comments_link() ) );
}

常见问题

FAQs
查看更多 >