Changes between Initial Version and Version 1 of Ticket #47125, comment 24
- Timestamp:
- 08/20/2024 07:39:10 PM (19 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #47125, comment 24
initial v1 2 2 For the admin menu, you can hook into the **admin_menu** action to change the labels of the "Add New" menu items. Here's an example: 3 3 4 5 {{{ 4 6 function customize_admin_menu_labels() { 5 7 global $menu, $submenu; … … 80 82 } 81 83 add_action('admin_footer', 'customize_admin_add_new_links'); 84 }}}