打印RSS评论供稿链接。
原型
comments_rss_link( string $link_text = 'Comments RSS' )
参数
$link_text
(string)
(Optional)
源文件
路径:wp-includes/deprecated.php
<?php
...
function comments_rss_link($link_text = 'Comments RSS') {
_deprecated_function( __FUNCTION__, '2.5.0', 'post_comments_feed_link()' );
post_comments_feed_link($link_text);
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/comments_rss_link/