Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ethiel88/6277bd91d0317c7b4e10b8ec9cffa6b0 to your computer and use it in GitHub Desktop.
Save ethiel88/6277bd91d0317c7b4e10b8ec9cffa6b0 to your computer and use it in GitHub Desktop.
Ultimate Member - Remove tabs on profile page
<?php
add_filter('um_profile_tabs', 'pages_tab', 1000 );
function pages_tab( $tabs ) {
unset($tabs['posts']);
unset($tabs['comments']);
return $tabs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment