wpseek.com
WordPress开发者和主题制作者的搜索引擎



next_comments_link › WordPress Function

Since2.7.0
已弃用n/a
next_comments_link ( $label = '', $max_page = 0 )
参数: (2)
  • (string) $label Optional. Label for link text. Default empty.
    Required: No
    默认: (empty)
  • (int) $max_page Optional. Max page. Default 0.
    Required: No
    默认:
定义在:
文档:

Displays the link to the next comments page.



源码

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