Skip to content

Instantly share code, notes, and snippets.

@wp-user-manager
Created February 19, 2020 16:51
Show Gist options
  • Save wp-user-manager/b4da9e2300affedf4359944bca0246b7 to your computer and use it in GitHub Desktop.
Save wp-user-manager/b4da9e2300affedf4359944bca0246b7 to your computer and use it in GitHub Desktop.
WP User Manager - Rename tabs on the profile page
<?php
add_filter( 'wpum_get_registered_profile_tabs', 'my_wpum_get_registered_profile_tabs' );
function my_wpum_get_registered_profile_tabs( $tabs ) {
$tabs['about']['name'] = esc_html( 'About Me' );
$tabs['posts']['name'] = esc_html( 'My Posts' );
return $tabs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment