Display latest comments on page with pagination

Im trying to display latest comments from all the post on a page named comments, now im able to use <?php wp_list_comments('per_page=25', get_comments()) ?> and it gets all the comments but when I try to use <?php get_paginate_comments_links() ?> nothing shows even the next and previous buttons dont show, what am i doing wrong?

This is my current code, any help is appreciated

<?php wp_list_comments('per_page=5', get_comments()) ?> 


              <div class="navigation">
              <?php get_paginate_comments_links(array() ?>
<?php previous_comments_link() ?>
<?php next_comments_link() ?>
</div>

Related posts

Leave a Reply

1 comment