Skip to content

Instantly share code, notes, and snippets.

@techjewel
Created October 28, 2021 06:41
Show Gist options
  • Save techjewel/16304cc6d4d0ff76f61a8899cf14bb86 to your computer and use it in GitHub Desktop.
Save techjewel/16304cc6d4d0ff76f61a8899cf14bb86 to your computer and use it in GitHub Desktop.
<?php
add_action('admin_menu', function () {
global $menu;
foreach ($menu as $index => $menuItem) {
if(!empty($menuItem[2]) && $menuItem[2] == 'ninja_tables') {
$menu[$index][0] = 'My Tables';
}
}
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment