Ok. Thanks again for the suggestion
Ok, thanks for your quick answer.
We will try to use our own code to support this case. I share a first approach we are testing in a previous version of the plugin.
// Purge comments pagination
$commentsPerPage = get_blog_option(get_current_blog_id(), 'comments_per_page');
if (get_blog_option(get_current_blog_id(), 'page_comments') == 1 && $commentsPerPage > 0)
{
$pages = ceil((wp_count_comments($postId)->approved + 1) / $commentsPerPage);
for($i=2; $i<=$pages; $i++)
{
array_push($listofurls, get_permalink($postId) . 'comment-page-' . $i . '/');
}
}
Regards,
Armando