Last active
December 12, 2021 11:50
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Save this file to your /wp-content/mu-plugins/ directory (you might need to create the mu-plugins directory).