Title: About profile posts display
Last modified: June 8, 2021

---

# About profile posts display

 *  Resolved [ketandebroy](https://wordpress.org/support/users/ketandebroy/)
 * (@ketandebroy)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/about-profile-posts-display/)
 * Hi team, I want to know…is there any limitations in the no. of post to be displayed
   in the profile of an user. I mean… e.g. if the users post 500 post, will all 
   the post link be visible in the user’s profile?
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fabout-profile-posts-display%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  Plugin Support [mansurahamed](https://wordpress.org/support/users/mansurahamed/)
 * (@mansurahamed)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/about-profile-posts-display/#post-14543950)
 * Hi [@ketandebroy](https://wordpress.org/support/users/ketandebroy/),
 * No, default is 10 posts. You can change that to anything by adding following 
   code in your child theme’s functions.php ( change 500 to any number )
 *     ```
       add_filter( 'um_profile_query_make_posts', 'my_profile_query_make_posts', 10, 1 );
   
       function my_profile_query_make_posts( $query_posts ) {
       $query_posts['posts_per_page'] = 500; //Change this
       return $query_posts;
       }
       ```
   
 * Thanks.
    -  This reply was modified 4 years, 11 months ago by [mansurahamed](https://wordpress.org/support/users/mansurahamed/).
 *  Plugin Contributor [Champ Camba](https://wordpress.org/support/users/champsupertramp/)
 * (@champsupertramp)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/about-profile-posts-display/#post-14552041)
 * Hi [@ketandebroy](https://wordpress.org/support/users/ketandebroy/),
 * Please feel free to re-open this thread by changing the Topic Status to ‘Not 
   Resolved’ if any other questions come up and we’d be happy to help. 🙂
 * Regards,

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

The topic ‘About profile posts display’ is closed to new replies.

 * ![](https://ps.w.org/ultimate-member/assets/icon-256x256.png?rev=3160947)
 * [Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin](https://wordpress.org/plugins/ultimate-member/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ultimate-member/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ultimate-member/)
 * [Active Topics](https://wordpress.org/support/plugin/ultimate-member/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ultimate-member/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ultimate-member/reviews/)

## Tags

 * [Blog](https://wordpress.org/support/topic-tag/blog/)
 * [posts](https://wordpress.org/support/topic-tag/posts/)
 * [profile](https://wordpress.org/support/topic-tag/profile/)

 * 2 replies
 * 3 participants
 * Last reply from: [Champ Camba](https://wordpress.org/support/users/champsupertramp/)
 * Last activity: [4 years, 11 months ago](https://wordpress.org/support/topic/about-profile-posts-display/#post-14552041)
 * Status: resolved