当前浏览:首页 / WordPress函数 / get_page_of_comment()

get_page_of_comment( int $comment_ID, array $args = array() )

计算评论将出现在评论分页的第几页

comment 评论more...

pagemore...


参数

$comment_ID

(int)(必填) 评论ID。

$args

(array)(可选) 可选参数的数组。

  • 'type'
    (string) 将分页评论限制为与给定类型匹配的评论。接受'comment','trackback','pingback','pings',或'all'。默认值为'all'。
  • 'per_page'
    (int) 计算分页时使用的每页计数。默认为'comments_per_page'选项的值。
  • 'max_depth'
    (int|string) 如果大于1,将为顶层(top-level)父级$comment_ID确定评论页。默认为'thread_comments_depth'选项的值。

默认值: array()


返回

(int|null) 评论页码或错误时为null。



源码

查看源码 官方文档


更新日志

版本描述
2.7.0开始引入