Skip to content

Instantly share code, notes, and snippets.

@wp-user-manager
Last active December 12, 2021 11:50
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save wp-user-manager/f6fca7fd28bd80ec8c7b7b3c314fabba to your computer and use it in GitHub Desktop.
WP User Manager - Change the profile settings header text on the Account page
<?php
function my_wpum_profile_settings_title( $tabs ) {
$tabs['account']['name'] = 'My Custom Settings Header';
return $tabs;
}
add_filter( 'wpum_account_tabs', 'my_wpum_profile_settings_title' );
@wp-user-manager
Copy link
Author

Save this file to your /wp-content/mu-plugins/ directory (you might need to create the mu-plugins directory).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment