函数原型
next_comments_link( string $label = ”, int $max_page )
函数描述
Displays the link to the next comments page.
是否弃用
未弃用
函数参数
-
$label
string
Optional - Label for link text.
Default:
'' -
$max_page
int
Optional - Max page. Default 0.
函数返回值
无
函数位置
File: wp-includes/link-template.php.
函数源码
function next_comments_link( $label = '', $max_page = 0 ) {
echo get_next_comments_link( $label, $max_page );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 2.7.0 | Introduced. |

