尝试get_comment_pages_count()
?
<?php get_comment_pages_count( $comments, $per_page, $threaded); ?>
我猜你在圈外,因为你在打电话
get_comments()
; 那样的话,你需要通过
$comments
对象:
$comments = get_comments(array(
\'post_id\' => $post_id,
\'status\' => \'approve\'
));
wp_list_comments(array(
\'page\' => 1,
\'per_page\' => 10,
\'avatar_size\' => 16,
), $comments);
$comment_page_count = get_comment_pages_count( $comments );