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 wp-user-manager/aee521221a18211efd38cc2cd10afbe7 to your computer and use it in GitHub Desktop.
Save wp-user-manager/aee521221a18211efd38cc2cd10afbe7 to your computer and use it in GitHub Desktop.
WP User Manager - Change the account page 'Settings' tab to 'Profile'
<?php
function wpum_account_change_settings_tab_name( $tabs ) {
$tabs['settings']['name'] = esc_html( 'Profile' );
return $tabs;
}
add_filter( 'wpum_get_account_page_tabs', 'wpum_account_change_settings_tab_name' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment