next_comments_link

函数


next_comments_link ( $label = '', $max_page = 0 )
参数
  • (string)
    $label
    Optional. Label for link text. Default empty.
    Required:
    Default: (empty)
  • (int)
    $max_page
    Optional. Max page. Default 0.
    Required:
定义位置
  • wp-includes/link-template.php
    , line 3076
引入
2.7.0
弃用

Displays the link to the next comments page.

function next_comments_link( $label = '', $max_page = 0 ) {
	echo get_next_comments_link( $label, $max_page );
}