Landing › Forums › Somentra (Impeka) › Feedback › Rename Portfolio › Reply To: Rename Portfolio
August 5, 2021 at 10:31 pm
#428
Are you talking about the backend menu item?
If so, do you only want to rename it for the editor role?
A general solution could be something like this:
function wd_admin_menu_rename() {
global $menu;
$menu[6][0] = 'People';
}
add_action( 'admin_menu', 'wd_admin_menu_rename' );
Paste this to the functions.php inside your child theme.
Hope this is what you were looking for.

