comments_per_page

过滤钩子
apply_filters( 'comments_per_page', $comments_per_page, $comment_status )
参数
  • (int) $comments_per_page The number of comments to list per page.
    Required:
  • (string) $comment_status The comment status name. Default 'All'.
    Required:
定义位置
相关勾子
comments_templatecomments_opencomment_save_prepre_comment_user_agentedit_tags_per_page
相关方法
comments_templateadd_comments_pagecomments_opencomment_datecomments_rsscomment_footer_die
引入
2.6.0
弃用
-

comments_per_page: 这个函数返回在评论列表表中每页显示的评论数量。默认情况下,这个函数返回comments_per_page选项的值,但是你可以使用comments_per_page过滤器来修改显示的评论数。

过滤评论列表表中每页列出的评论数量。

return apply_filters( 'comments_per_page', $comments_per_page, $comment_status );

常见问题

FAQs
查看更多 >