Я пытаюсь отобразить все комментарии со всего сайта на странице, разрешить разбиение на комментарии не работает.
Я пытаюсь кодировать, как показано ниже
<?php the_comments_navigation(); ?>
<ul class="comment-list">
<?php
$comments = get_comments(array(
'status' => 'approve' //status of comment
));
//Display the list of comments
wp_list_comments(
array(
'style' => 'none',
'short_ping' => true,
'avatar_size' => 42,
'per_page' => 20, //Allow comment pagination
'reverse_top_level' => true
), $comments);
?>
</ul>
<?php the_comments_navigation(); ?>