Changeset 59784 for trunk/src/wp-admin/network/menu.php
- Timestamp:
- 02/08/2025 11:42:29 AM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/menu.php
r59678 r59784 56 56 $menu[5] = array( __( 'Sites' ), 'manage_sites', 'sites.php', '', 'menu-top menu-icon-site', 'menu-site', 'dashicons-admin-multisite' ); 57 57 $submenu['sites.php'][5] = array( __( 'All Sites' ), 'manage_sites', 'sites.php' ); 58 $submenu['sites.php'][10] = array( __( 'Add NewSite' ), 'create_sites', 'site-new.php' );58 $submenu['sites.php'][10] = array( __( 'Add Site' ), 'create_sites', 'site-new.php' ); 59 59 60 60 $menu[10] = array( __( 'Users' ), 'manage_network_users', 'users.php', '', 'menu-top menu-icon-users', 'menu-users', 'dashicons-admin-users' ); 61 61 $submenu['users.php'][5] = array( __( 'All Users' ), 'manage_network_users', 'users.php' ); 62 $submenu['users.php'][10] = array( __( 'Add NewUser' ), 'create_users', 'user-new.php' );62 $submenu['users.php'][10] = array( __( 'Add User' ), 'create_users', 'user-new.php' ); 63 63 64 64 if ( current_user_can( 'update_themes' ) && $update_data['counts']['themes'] ) { … … 84 84 } 85 85 $submenu['themes.php'][5] = array( __( 'Installed Themes' ), 'manage_network_themes', 'themes.php' ); 86 $submenu['themes.php'][10] = array( __( 'Add NewTheme' ), 'install_themes', 'theme-install.php' );86 $submenu['themes.php'][10] = array( __( 'Add Theme' ), 'install_themes', 'theme-install.php' ); 87 87 $submenu['themes.php'][15] = array( __( 'Theme File Editor' ), 'edit_themes', 'theme-editor.php' ); 88 88 … … 109 109 } 110 110 $submenu['plugins.php'][5] = array( __( 'Installed Plugins' ), 'manage_network_plugins', 'plugins.php' ); 111 $submenu['plugins.php'][10] = array( __( 'Add NewPlugin' ), 'install_plugins', 'plugin-install.php' );111 $submenu['plugins.php'][10] = array( __( 'Add Plugin' ), 'install_plugins', 'plugin-install.php' ); 112 112 $submenu['plugins.php'][15] = array( __( 'Plugin File Editor' ), 'edit_plugins', 'plugin-editor.php' ); 113 113
Note: See TracChangeset
for help on using the changeset viewer.