/** * 自定义评论分页函数 */ function custom_comments_pagination() { $total_pages = get_comment_pages_count(); // 总评论页数 $current_page = max(1, get_query_var('cpage') ? get_query_var('cpage') : 1); // 当前评论页码 $prev_page = $current_page - 1; $next_page = $current_page + 1; echo '