只是一些用于主评论查询的附加信息:
既然你提到了全球$wp_query
对象,我们可以看到它存储:
$wp_query->max_num_comment_pages = $comment_query->max_num_pages;
在注释模板的主注释查询中。
那里exists a wrapper 为此,即:
get_comment_pages_count();
这在主注释查询之后可用。
如果在主注释查询运行之前需要它,那么我们可以检查get_comments_number( $post_id )
大于get_option( \'comments_per_page\' )
. 但我们应该记住comments_per_page
可通过修改参数,例如comments_template_query_args
滤器