WordPress下一页评论标签:next_comments_link

WordPress模板标签next_comments_link输出下一页评论链接,用于在评论模板中制作翻页导航。

1
next_comments_link( string $label = '', integer $max_page = 0 )

函数参数

$label

字符串值,默认值:Newer Comments »

链接的锚文本

$max_pages

整数型,默认值:0

翻页的最大页码数,默认值无限制

函数使用示例

1
<?php next_comments_link( 'Newer Comments »', 0 ); ?>

扩展阅读

next_comments_link()函数位于:wp-includes/link-template.php

相关函数:

  • cancel_comment_reply_link()
  • comment_author()
  • comment_author_email()
  • comment_author_email_link()
  • comment_author_IP()
  • comment_author_link()
  • comment_author_rss()
  • comment_author_url()
  • comment_author_url_link()
  • comment_class()
  • comment_date()
  • comment_excerpt()
  • comment_form_title()
  • comment_form()
  • comment_ID()
  • comment_id_fields()
  • comment_reply_link()
  • comment_text()
  • comment_text_rss()
  • comment_time()
  • comment_type()
  • comments_link()
  • comments_number()
  • comments_open()
  • comments_popup_link()
  • comments_popup_script()
  • comments_rss_link()
  • get_avatar()
  • paginate_comments_links()
  • permalink_comments_rss()
  • previous_comments_link()
  • wp_list_comments()
原文链接:https://xiaohost.com/2431.html,转载请注明出处。
0