Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save quangmai911/b3c78af8eab87abe9c8c675c19f77814 to your computer and use it in GitHub Desktop.
Save quangmai911/b3c78af8eab87abe9c8c675c19f77814 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