Title: Change displayed posts type
Last modified: January 17, 2019

---

# Change displayed posts type

 *  Resolved [tavomenas](https://wordpress.org/support/users/tavomenas/)
 * (@tavomenas)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/change-displayed-posts-type/)
 * Hi,
    on settings>profiles>profile content I can enable the option to display 
   users submitted posts on their profile page.
 * Is it possible to change the type of post which is displayed? For example, my
   users submit “portfolio” posts, can I show on their profile page their portfolio
   entries?

Viewing 1 replies (of 1 total)

 *  Plugin Contributor [Alessandro Tesoro](https://wordpress.org/support/users/alessandrotesoro/)
 * (@alessandrotesoro)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/change-displayed-posts-type/#post-11103651)
 * Hi [@tavomenas](https://wordpress.org/support/users/tavomenas/)
 * Yes you can modify the post type through a filter, you can add this code to your
   theme’s functions.php file
 *     ```
       add_filter(
       	'wpum_get_posts_for_profile',
       	function ( $args ) {
       		$args['post_type'] = 'your_post_type_here';
       		return $args;
       	}
       );
       ```
   
 * Make sure you modify the string “your_post_type_here” with the name of your post
   type.

Viewing 1 replies (of 1 total)

The topic ‘Change displayed posts type’ 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

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

 * 1 reply
 * 2 participants
 * Last reply from: [Alessandro Tesoro](https://wordpress.org/support/users/alessandrotesoro/)
 * Last activity: [7 years, 4 months ago](https://wordpress.org/support/topic/change-displayed-posts-type/#post-11103651)
 * Status: resolved