Title: Paginate comments
Last modified: March 18, 2019

---

# Paginate comments

 *  Resolved [davereed](https://wordpress.org/support/users/davereed/)
 * (@davereed)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/paginate-comments-2/)
 * I need to allow users to click back through pages of past comments. I see where
   the functions.php file sets the number of comments displayed to 10. Can you help
   me understand how to add pagination?

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Contributor [Alessandro Tesoro](https://wordpress.org/support/users/alessandrotesoro/)
 * (@alessandrotesoro)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/paginate-comments-2/#post-11329109)
 * Hi [@davereed](https://wordpress.org/support/users/davereed/)
 * Adding pagination for comments within profiles is not a simple task that can 
   be easily explained here in a few lines. This is currently a feature on my to-
   do list that I plan to add very soon.
 * At the moment the only adjustment you could do, is use the filter to increase
   the amount of comments displayed within the profile page. Let me know if you 
   wish to do that and I can provide you a snippet.
    -  This reply was modified 7 years, 6 months ago by [Alessandro Tesoro](https://wordpress.org/support/users/alessandrotesoro/).
 *  Thread Starter [davereed](https://wordpress.org/support/users/davereed/)
 * (@davereed)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/paginate-comments-2/#post-11330900)
 * Hi Alessandro, yes, please share that snippet. Do you have a timeline for when
   that might be added?
 * Thanks again!
 *  Plugin Contributor [Alessandro Tesoro](https://wordpress.org/support/users/alessandrotesoro/)
 * (@alessandrotesoro)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/paginate-comments-2/#post-11333879)
 * Hi [@davereed](https://wordpress.org/support/users/davereed/)
 * This code should work, add it to your theme’s functions.php and adjust the number
   in there as you wish.
 *     ```
       add_filter(
       	'wpum_get_comments_for_profile',
       	function ( $args ) {
       		$args['number'] = 100;
       		return $args;
       	}
       );
       ```
   

Viewing 3 replies - 1 through 3 (of 3 total)

 The topic ‘Paginate comments’ is closed to new replies.

 * ![](https://ps.w.org/wp-user-manager/assets/icon-256x256.png?rev=3468506)
 * [WP User Manager - User Profile Builder & Membership](https://wordpress.org/plugins/wp-user-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-user-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-user-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-user-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-user-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-user-manager/reviews/)

## Tags

 * [Comments](https://wordpress.org/support/topic-tag/comments/)
 * [pagination](https://wordpress.org/support/topic-tag/pagination/)

 * 3 replies
 * 2 participants
 * Last reply from: [Alessandro Tesoro](https://wordpress.org/support/users/alessandrotesoro/)
 * Last activity: [7 years, 6 months ago](https://wordpress.org/support/topic/paginate-comments-2/#post-11333879)
 * Status: resolved