Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #47125, comment 24


Ignore:
Timestamp:
08/20/2024 07:39:10 PM (19 months ago)
Author:
dilip2615
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #47125, comment 24

    initial v1  
    22For 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:
    33
     4
     5{{{
    46function customize_admin_menu_labels() {
    57    global $menu, $submenu;
     
    8082}
    8183add_action('admin_footer', 'customize_admin_add_new_links');
     84}}}