Change name & menu_name for Profile in the default menu, w/o altering core files?

I want to change the name and menu_name of the profile menu in the default menu without altering the core files.

Related posts

Leave a Reply

1 comment

  1. you could filter gettext to change it. Note that this will change every translatable instance of “Profile”.

    function change_admin_profile_to_account( $thename ){
        $thename = str_replace( 'Profile', 'Account', $thename );
        return $thename;
    }
    add_filter( 'gettext', 'change_admin_profile_to_account' );