Title: Remove default profile tab
Last modified: August 4, 2017

---

# Remove default profile tab

 *  Resolved [pre20](https://wordpress.org/support/users/pre20/)
 * (@pre20)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/remove-default-profile-tags/)
 * Hi,
 * How can I delete the default Posts tab in profile view?
 * Thanks
    -  This topic was modified 8 years, 9 months ago by [pre20](https://wordpress.org/support/users/pre20/).

Viewing 1 replies (of 1 total)

 *  [spencerdesmond](https://wordpress.org/support/users/spencerdesmond/)
 * (@spencerdesmond)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/remove-default-profile-tags/#post-9380973)
 * [This gist](https://gist.github.com/ultimatemember/643cd90967e5e415378d) shows
   how to _add_ a tab, but the same filter can be used to remove a tab as well. 
   Here’s what I did.
 *     ```
       /* Remove a tab from user pages */
       add_filter('um_profile_tabs', 'pages_tab', 1000 );
       function pages_tab( $tabs ) {
           unset($tabs['posts']);	
           return $tabs;
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Remove default profile tab’ 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/)

 * 1 reply
 * 2 participants
 * Last reply from: [spencerdesmond](https://wordpress.org/support/users/spencerdesmond/)
 * Last activity: [8 years, 9 months ago](https://wordpress.org/support/topic/remove-default-profile-tags/#post-9380973)
 * Status: resolved