author | ymh <ymh.work@gmail.com> |
Fri, 05 Sep 2025 18:40:08 +0200 | |
changeset 21 | 48c4eec2b7e6 |
parent 19 | 3d72ae0968f4 |
child 22 | 8c2e4d02f4ef |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* Build Administration Menu. |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Administration |
|
7 |
*/ |
|
8 |
||
9 |
/** |
|
10 |
* Constructs the admin menu. |
|
11 |
* |
|
16 | 12 |
* The elements in the array are: |
13 |
* 0: Menu item name. |
|
0 | 14 |
* 1: Minimum level or capability required. |
16 | 15 |
* 2: The URL of the item's file. |
16 |
* 3: Page title. |
|
17 |
* 4: Classes. |
|
18 |
* 5: ID. |
|
19 |
* 6: Icon for top level menu. |
|
0 | 20 |
* |
21 |
* @global array $menu |
|
22 |
*/ |
|
23 |
||
9 | 24 |
$menu[2] = array( __( 'Dashboard' ), 'read', 'index.php', '', 'menu-top menu-top-first menu-icon-dashboard', 'menu-dashboard', 'dashicons-dashboard' ); |
0 | 25 |
|
9 | 26 |
$submenu['index.php'][0] = array( __( 'Home' ), 'read', 'index.php' ); |
0 | 27 |
|
28 |
if ( is_multisite() ) { |
|
9 | 29 |
$submenu['index.php'][5] = array( __( 'My Sites' ), 'read', 'my-sites.php' ); |
0 | 30 |
} |
31 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
32 |
if ( ! is_multisite() || current_user_can( 'update_core' ) ) { |
0 | 33 |
$update_data = wp_get_update_data(); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
34 |
} |
0 | 35 |
|
36 |
if ( ! is_multisite() ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
37 |
if ( current_user_can( 'update_core' ) ) { |
0 | 38 |
$cap = 'update_core'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
39 |
} elseif ( current_user_can( 'update_plugins' ) ) { |
0 | 40 |
$cap = 'update_plugins'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
41 |
} elseif ( current_user_can( 'update_themes' ) ) { |
0 | 42 |
$cap = 'update_themes'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
43 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
44 |
$cap = 'update_languages'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
45 |
} |
16 | 46 |
$submenu['index.php'][10] = array( |
47 |
sprintf( |
|
48 |
/* translators: %s: Number of pending updates. */ |
|
49 |
__( 'Updates %s' ), |
|
50 |
sprintf( |
|
51 |
'<span class="update-plugins count-%s"><span class="update-count">%s</span></span>', |
|
52 |
$update_data['counts']['total'], |
|
53 |
number_format_i18n( $update_data['counts']['total'] ) |
|
54 |
) |
|
55 |
), |
|
56 |
$cap, |
|
57 |
'update-core.php', |
|
58 |
); |
|
0 | 59 |
unset( $cap ); |
60 |
} |
|
61 |
||
62 |
$menu[4] = array( '', 'read', 'separator1', '', 'wp-menu-separator' ); |
|
63 |
||
16 | 64 |
// $menu[5] = Posts. |
0 | 65 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
66 |
$menu[10] = array( __( 'Media' ), 'upload_files', 'upload.php', '', 'menu-top menu-icon-media', 'menu-media', 'dashicons-admin-media' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
67 |
$submenu['upload.php'][5] = array( __( 'Library' ), 'upload_files', 'upload.php' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
68 |
$submenu['upload.php'][10] = array( __( 'Add New Media File' ), 'upload_files', 'media-new.php' ); |
9 | 69 |
$i = 15; |
70 |
foreach ( get_taxonomies_for_attachments( 'objects' ) as $tax ) { |
|
71 |
if ( ! $tax->show_ui || ! $tax->show_in_menu ) { |
|
72 |
continue; |
|
73 |
} |
|
0 | 74 |
|
9 | 75 |
$submenu['upload.php'][ $i++ ] = array( esc_attr( $tax->labels->menu_name ), $tax->cap->manage_terms, 'edit-tags.php?taxonomy=' . $tax->name . '&post_type=attachment' ); |
76 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
77 |
unset( $tax, $i ); |
0 | 78 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
79 |
$menu[15] = array( __( 'Links' ), 'manage_links', 'link-manager.php', '', 'menu-top menu-icon-links', 'menu-links', 'dashicons-admin-links' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
80 |
$submenu['link-manager.php'][5] = array( _x( 'All Links', 'admin menu' ), 'manage_links', 'link-manager.php' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
81 |
$submenu['link-manager.php'][10] = array( __( 'Add New Link' ), 'manage_links', 'link-add.php' ); |
9 | 82 |
$submenu['link-manager.php'][15] = array( __( 'Link Categories' ), 'manage_categories', 'edit-tags.php?taxonomy=link_category' ); |
0 | 83 |
|
16 | 84 |
// $menu[20] = Pages. |
0 | 85 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
86 |
// Avoid the comment count query for users who cannot edit_posts. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
87 |
if ( current_user_can( 'edit_posts' ) ) { |
9 | 88 |
$awaiting_mod = wp_count_comments(); |
89 |
$awaiting_mod = $awaiting_mod->moderated; |
|
90 |
$awaiting_mod_i18n = number_format_i18n( $awaiting_mod ); |
|
16 | 91 |
/* translators: %s: Number of comments. */ |
9 | 92 |
$awaiting_mod_text = sprintf( _n( '%s Comment in moderation', '%s Comments in moderation', $awaiting_mod ), $awaiting_mod_i18n ); |
93 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
94 |
$menu[25] = array( |
16 | 95 |
/* translators: %s: Number of comments. */ |
9 | 96 |
sprintf( __( 'Comments %s' ), '<span class="awaiting-mod count-' . absint( $awaiting_mod ) . '"><span class="pending-count" aria-hidden="true">' . $awaiting_mod_i18n . '</span><span class="comments-in-moderation-text screen-reader-text">' . $awaiting_mod_text . '</span></span>' ), |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
97 |
'edit_posts', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
98 |
'edit-comments.php', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
99 |
'', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
100 |
'menu-top menu-icon-comments', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
101 |
'menu-comments', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
102 |
'dashicons-admin-comments', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
103 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
104 |
unset( $awaiting_mod ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
105 |
} |
0 | 106 |
|
9 | 107 |
$submenu['edit-comments.php'][0] = array( __( 'All Comments' ), 'edit_posts', 'edit-comments.php' ); |
0 | 108 |
|
16 | 109 |
$_wp_last_object_menu = 25; // The index of the last top-level menu in the object menu group. |
0 | 110 |
|
9 | 111 |
$types = (array) get_post_types( |
112 |
array( |
|
113 |
'show_ui' => true, |
|
114 |
'_builtin' => false, |
|
115 |
'show_in_menu' => true, |
|
116 |
) |
|
117 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
118 |
$builtin = array( 'post', 'page' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
119 |
foreach ( array_merge( $builtin, $types ) as $ptype ) { |
0 | 120 |
$ptype_obj = get_post_type_object( $ptype ); |
121 |
// Check if it should be a submenu. |
|
16 | 122 |
if ( true !== $ptype_obj->show_in_menu ) { |
0 | 123 |
continue; |
9 | 124 |
} |
0 | 125 |
$ptype_menu_position = is_int( $ptype_obj->menu_position ) ? $ptype_obj->menu_position : ++$_wp_last_object_menu; // If we're to use $_wp_last_object_menu, increment it first. |
9 | 126 |
$ptype_for_id = sanitize_html_class( $ptype ); |
5 | 127 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
128 |
$menu_icon = 'dashicons-admin-post'; |
0 | 129 |
if ( is_string( $ptype_obj->menu_icon ) ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
130 |
// Special handling for an empty div.wp-menu-image, data:image/svg+xml, and Dashicons. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
131 |
if ( 'none' === $ptype_obj->menu_icon || 'div' === $ptype_obj->menu_icon |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
132 |
|| str_starts_with( $ptype_obj->menu_icon, 'data:image/svg+xml;base64,' ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
133 |
|| str_starts_with( $ptype_obj->menu_icon, 'dashicons-' ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
134 |
) { |
5 | 135 |
$menu_icon = $ptype_obj->menu_icon; |
136 |
} else { |
|
137 |
$menu_icon = esc_url( $ptype_obj->menu_icon ); |
|
138 |
} |
|
16 | 139 |
} elseif ( in_array( $ptype, $builtin, true ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
140 |
$menu_icon = 'dashicons-admin-' . $ptype; |
0 | 141 |
} |
142 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
143 |
$menu_class = 'menu-top menu-icon-' . $ptype_for_id; |
16 | 144 |
// 'post' special case. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
145 |
if ( 'post' === $ptype ) { |
9 | 146 |
$menu_class .= ' open-if-no-js'; |
147 |
$ptype_file = 'edit.php'; |
|
148 |
$post_new_file = 'post-new.php'; |
|
149 |
$edit_tags_file = 'edit-tags.php?taxonomy=%s'; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
150 |
} else { |
9 | 151 |
$ptype_file = "edit.php?post_type=$ptype"; |
152 |
$post_new_file = "post-new.php?post_type=$ptype"; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
153 |
$edit_tags_file = "edit-tags.php?taxonomy=%s&post_type=$ptype"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
154 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
155 |
|
16 | 156 |
if ( in_array( $ptype, $builtin, true ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
157 |
$ptype_menu_id = 'menu-' . $ptype_for_id . 's'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
158 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
159 |
$ptype_menu_id = 'menu-posts-' . $ptype_for_id; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
160 |
} |
5 | 161 |
/* |
162 |
* If $ptype_menu_position is already populated or will be populated |
|
163 |
* by a hard-coded value below, increment the position. |
|
164 |
*/ |
|
9 | 165 |
$core_menu_positions = array( 59, 60, 65, 70, 75, 80, 85, 99 ); |
16 | 166 |
while ( isset( $menu[ $ptype_menu_position ] ) || in_array( $ptype_menu_position, $core_menu_positions, true ) ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
167 |
++$ptype_menu_position; |
9 | 168 |
} |
0 | 169 |
|
9 | 170 |
$menu[ $ptype_menu_position ] = array( esc_attr( $ptype_obj->labels->menu_name ), $ptype_obj->cap->edit_posts, $ptype_file, '', $menu_class, $ptype_menu_id, $menu_icon ); |
171 |
$submenu[ $ptype_file ][5] = array( $ptype_obj->labels->all_items, $ptype_obj->cap->edit_posts, $ptype_file ); |
|
172 |
$submenu[ $ptype_file ][10] = array( $ptype_obj->labels->add_new, $ptype_obj->cap->create_posts, $post_new_file ); |
|
0 | 173 |
|
174 |
$i = 15; |
|
175 |
foreach ( get_taxonomies( array(), 'objects' ) as $tax ) { |
|
9 | 176 |
if ( ! $tax->show_ui || ! $tax->show_in_menu || ! in_array( $ptype, (array) $tax->object_type, true ) ) { |
0 | 177 |
continue; |
9 | 178 |
} |
0 | 179 |
|
9 | 180 |
$submenu[ $ptype_file ][ $i++ ] = array( esc_attr( $tax->labels->menu_name ), $tax->cap->manage_terms, sprintf( $edit_tags_file, $tax->name ) ); |
0 | 181 |
} |
182 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
183 |
unset( $ptype, $ptype_obj, $ptype_for_id, $ptype_menu_position, $menu_icon, $i, $tax, $post_new_file ); |
0 | 184 |
|
185 |
$menu[59] = array( '', 'read', 'separator2', '', 'wp-menu-separator' ); |
|
186 |
||
9 | 187 |
$appearance_cap = current_user_can( 'switch_themes' ) ? 'switch_themes' : 'edit_theme_options'; |
0 | 188 |
|
18 | 189 |
$menu[60] = array( __( 'Appearance' ), $appearance_cap, 'themes.php', '', 'menu-top menu-icon-appearance', 'menu-appearance', 'dashicons-admin-appearance' ); |
190 |
||
191 |
$count = ''; |
|
192 |
if ( ! is_multisite() && current_user_can( 'update_themes' ) ) { |
|
193 |
if ( ! isset( $update_data ) ) { |
|
194 |
$update_data = wp_get_update_data(); |
|
195 |
} |
|
196 |
$count = sprintf( |
|
197 |
'<span class="update-plugins count-%s"><span class="theme-count">%s</span></span>', |
|
198 |
$update_data['counts']['themes'], |
|
199 |
number_format_i18n( $update_data['counts']['themes'] ) |
|
200 |
); |
|
201 |
} |
|
202 |
||
203 |
/* translators: %s: Number of available theme updates. */ |
|
204 |
$submenu['themes.php'][5] = array( sprintf( __( 'Themes %s' ), $count ), $appearance_cap, 'themes.php' ); |
|
5 | 205 |
|
19 | 206 |
if ( wp_is_block_theme() ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
207 |
$submenu['themes.php'][6] = array( _x( 'Editor', 'site editor menu item' ), 'edit_theme_options', 'site-editor.php' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
208 |
} else { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
209 |
$submenu['themes.php'][6] = array( _x( 'Patterns', 'patterns menu item' ), 'edit_theme_options', 'site-editor.php?path=/patterns' ); |
19 | 210 |
} |
211 |
||
212 |
$customize_url = add_query_arg( 'return', urlencode( remove_query_arg( wp_removable_query_args(), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ), 'customize.php' ); |
|
213 |
||
214 |
// Hide Customize link on block themes unless a plugin or theme |
|
215 |
// is using 'customize_register' to add a setting. |
|
216 |
if ( ! wp_is_block_theme() || has_action( 'customize_register' ) ) { |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
217 |
$submenu['themes.php'][7] = array( __( 'Customize' ), 'customize', esc_url( $customize_url ), '', 'hide-if-no-customize' ); |
19 | 218 |
} |
5 | 219 |
|
9 | 220 |
if ( current_theme_supports( 'menus' ) || current_theme_supports( 'widgets' ) ) { |
221 |
$submenu['themes.php'][10] = array( __( 'Menus' ), 'edit_theme_options', 'nav-menus.php' ); |
|
222 |
} |
|
5 | 223 |
|
9 | 224 |
if ( current_theme_supports( 'custom-header' ) && current_user_can( 'customize' ) ) { |
225 |
$customize_header_url = add_query_arg( array( 'autofocus' => array( 'control' => 'header_image' ) ), $customize_url ); |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
226 |
$submenu['themes.php'][15] = array( _x( 'Header', 'custom image header' ), $appearance_cap, esc_url( $customize_header_url ), '', 'hide-if-no-customize' ); |
9 | 227 |
} |
5 | 228 |
|
9 | 229 |
if ( current_theme_supports( 'custom-background' ) && current_user_can( 'customize' ) ) { |
230 |
$customize_background_url = add_query_arg( array( 'autofocus' => array( 'control' => 'background_image' ) ), $customize_url ); |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
231 |
$submenu['themes.php'][20] = array( _x( 'Background', 'custom background' ), $appearance_cap, esc_url( $customize_background_url ), '', 'hide-if-no-customize' ); |
9 | 232 |
} |
5 | 233 |
|
19 | 234 |
unset( $customize_url ); |
0 | 235 |
|
236 |
unset( $appearance_cap ); |
|
237 |
||
19 | 238 |
// Add 'Theme File Editor' to the bottom of the Appearance (non-block themes) or Tools (block themes) menu. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
239 |
if ( ! is_multisite() ) { |
19 | 240 |
// Must use API on the admin_menu hook, direct modification is only possible on/before the _admin_menu hook. |
9 | 241 |
add_action( 'admin_menu', '_add_themes_utility_last', 101 ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
242 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
243 |
/** |
19 | 244 |
* Adds the 'Theme File Editor' menu item to the bottom of the Appearance (non-block themes) |
245 |
* or Tools (block themes) menu. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
246 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
247 |
* @access private |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
248 |
* @since 3.0.0 |
19 | 249 |
* @since 5.9.0 Renamed 'Theme Editor' to 'Theme File Editor'. |
250 |
* Relocates to Tools for block themes. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
251 |
*/ |
0 | 252 |
function _add_themes_utility_last() { |
19 | 253 |
add_submenu_page( |
254 |
wp_is_block_theme() ? 'tools.php' : 'themes.php', |
|
255 |
__( 'Theme File Editor' ), |
|
256 |
__( 'Theme File Editor' ), |
|
257 |
'edit_themes', |
|
258 |
'theme-editor.php' |
|
259 |
); |
|
260 |
} |
|
261 |
||
262 |
/** |
|
263 |
* Adds the 'Plugin File Editor' menu item after the 'Themes File Editor' in Tools |
|
264 |
* for block themes. |
|
265 |
* |
|
266 |
* @access private |
|
267 |
* @since 5.9.0 |
|
268 |
*/ |
|
269 |
function _add_plugin_file_editor_to_tools() { |
|
270 |
if ( ! wp_is_block_theme() ) { |
|
271 |
return; |
|
272 |
} |
|
273 |
add_submenu_page( |
|
274 |
'tools.php', |
|
275 |
__( 'Plugin File Editor' ), |
|
276 |
__( 'Plugin File Editor' ), |
|
277 |
'edit_plugins', |
|
278 |
'plugin-editor.php' |
|
279 |
); |
|
0 | 280 |
} |
281 |
||
282 |
$count = ''; |
|
283 |
if ( ! is_multisite() && current_user_can( 'update_plugins' ) ) { |
|
9 | 284 |
if ( ! isset( $update_data ) ) { |
0 | 285 |
$update_data = wp_get_update_data(); |
9 | 286 |
} |
16 | 287 |
$count = sprintf( |
288 |
'<span class="update-plugins count-%s"><span class="plugin-count">%s</span></span>', |
|
289 |
$update_data['counts']['plugins'], |
|
290 |
number_format_i18n( $update_data['counts']['plugins'] ) |
|
291 |
); |
|
0 | 292 |
} |
293 |
||
18 | 294 |
/* translators: %s: Number of available plugin updates. */ |
9 | 295 |
$menu[65] = array( sprintf( __( 'Plugins %s' ), $count ), 'activate_plugins', 'plugins.php', '', 'menu-top menu-icon-plugins', 'menu-plugins', 'dashicons-admin-plugins' ); |
0 | 296 |
|
9 | 297 |
$submenu['plugins.php'][5] = array( __( 'Installed Plugins' ), 'activate_plugins', 'plugins.php' ); |
0 | 298 |
|
9 | 299 |
if ( ! is_multisite() ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
300 |
$submenu['plugins.php'][10] = array( __( 'Add New Plugin' ), 'install_plugins', 'plugin-install.php' ); |
19 | 301 |
if ( wp_is_block_theme() ) { |
302 |
// Place the menu item below the Theme File Editor menu item. |
|
303 |
add_action( 'admin_menu', '_add_plugin_file_editor_to_tools', 101 ); |
|
304 |
} else { |
|
305 |
$submenu['plugins.php'][15] = array( __( 'Plugin File Editor' ), 'edit_plugins', 'plugin-editor.php' ); |
|
306 |
} |
|
9 | 307 |
} |
0 | 308 |
|
309 |
unset( $update_data ); |
|
310 |
||
9 | 311 |
if ( current_user_can( 'list_users' ) ) { |
312 |
$menu[70] = array( __( 'Users' ), 'list_users', 'users.php', '', 'menu-top menu-icon-users', 'menu-users', 'dashicons-admin-users' ); |
|
313 |
} else { |
|
314 |
$menu[70] = array( __( 'Profile' ), 'read', 'profile.php', '', 'menu-top menu-icon-users', 'menu-users', 'dashicons-admin-users' ); |
|
315 |
} |
|
0 | 316 |
|
9 | 317 |
if ( current_user_can( 'list_users' ) ) { |
0 | 318 |
$_wp_real_parent_file['profile.php'] = 'users.php'; // Back-compat for plugins adding submenus to profile.php. |
9 | 319 |
$submenu['users.php'][5] = array( __( 'All Users' ), 'list_users', 'users.php' ); |
5 | 320 |
if ( current_user_can( 'create_users' ) ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
321 |
$submenu['users.php'][10] = array( __( 'Add New User' ), 'create_users', 'user-new.php' ); |
5 | 322 |
} elseif ( is_multisite() ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
323 |
$submenu['users.php'][10] = array( __( 'Add New User' ), 'promote_users', 'user-new.php' ); |
5 | 324 |
} |
0 | 325 |
|
16 | 326 |
$submenu['users.php'][15] = array( __( 'Profile' ), 'read', 'profile.php' ); |
0 | 327 |
} else { |
328 |
$_wp_real_parent_file['users.php'] = 'profile.php'; |
|
16 | 329 |
$submenu['profile.php'][5] = array( __( 'Profile' ), 'read', 'profile.php' ); |
5 | 330 |
if ( current_user_can( 'create_users' ) ) { |
9 | 331 |
$submenu['profile.php'][10] = array( __( 'Add New User' ), 'create_users', 'user-new.php' ); |
5 | 332 |
} elseif ( is_multisite() ) { |
9 | 333 |
$submenu['profile.php'][10] = array( __( 'Add New User' ), 'promote_users', 'user-new.php' ); |
5 | 334 |
} |
0 | 335 |
} |
336 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
337 |
$site_health_count = ''; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
338 |
if ( ! is_multisite() && current_user_can( 'view_site_health_checks' ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
339 |
$get_issues = get_transient( 'health-check-site-status-result' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
340 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
341 |
$issue_counts = array(); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
342 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
343 |
if ( false !== $get_issues ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
344 |
$issue_counts = json_decode( $get_issues, true ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
345 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
346 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
347 |
if ( ! is_array( $issue_counts ) || ! $issue_counts ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
348 |
$issue_counts = array( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
349 |
'good' => 0, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
350 |
'recommended' => 0, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
351 |
'critical' => 0, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
352 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
353 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
354 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
355 |
$site_health_count = sprintf( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
356 |
'<span class="menu-counter site-health-counter count-%s"><span class="count">%s</span></span>', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
357 |
$issue_counts['critical'], |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
358 |
number_format_i18n( $issue_counts['critical'] ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
359 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
360 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
361 |
|
9 | 362 |
$menu[75] = array( __( 'Tools' ), 'edit_posts', 'tools.php', '', 'menu-top menu-icon-tools', 'menu-tools', 'dashicons-admin-tools' ); |
363 |
$submenu['tools.php'][5] = array( __( 'Available Tools' ), 'edit_posts', 'tools.php' ); |
|
364 |
$submenu['tools.php'][10] = array( __( 'Import' ), 'import', 'import.php' ); |
|
365 |
$submenu['tools.php'][15] = array( __( 'Export' ), 'export', 'export.php' ); |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
366 |
/* translators: %s: Number of critical Site Health checks. */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
367 |
$submenu['tools.php'][20] = array( sprintf( __( 'Site Health %s' ), $site_health_count ), 'view_site_health_checks', 'site-health.php' ); |
16 | 368 |
$submenu['tools.php'][25] = array( __( 'Export Personal Data' ), 'export_others_personal_data', 'export-personal-data.php' ); |
369 |
$submenu['tools.php'][30] = array( __( 'Erase Personal Data' ), 'erase_others_personal_data', 'erase-personal-data.php' ); |
|
9 | 370 |
if ( is_multisite() && ! is_main_site() ) { |
16 | 371 |
$submenu['tools.php'][35] = array( __( 'Delete Site' ), 'delete_site', 'ms-delete-site.php' ); |
9 | 372 |
} |
373 |
if ( ! is_multisite() && defined( 'WP_ALLOW_MULTISITE' ) && WP_ALLOW_MULTISITE ) { |
|
374 |
$submenu['tools.php'][50] = array( __( 'Network Setup' ), 'setup_network', 'network.php' ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
375 |
} |
0 | 376 |
|
9 | 377 |
$menu[80] = array( __( 'Settings' ), 'manage_options', 'options-general.php', '', 'menu-top menu-icon-settings', 'menu-settings', 'dashicons-admin-settings' ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
378 |
$submenu['options-general.php'][10] = array( _x( 'General', 'settings screen' ), 'manage_options', 'options-general.php' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
379 |
$submenu['options-general.php'][15] = array( __( 'Writing' ), 'manage_options', 'options-writing.php' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
380 |
$submenu['options-general.php'][20] = array( __( 'Reading' ), 'manage_options', 'options-reading.php' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
381 |
$submenu['options-general.php'][25] = array( __( 'Discussion' ), 'manage_options', 'options-discussion.php' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
382 |
$submenu['options-general.php'][30] = array( __( 'Media' ), 'manage_options', 'options-media.php' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
383 |
$submenu['options-general.php'][40] = array( __( 'Permalinks' ), 'manage_options', 'options-permalink.php' ); |
16 | 384 |
$submenu['options-general.php'][45] = array( __( 'Privacy' ), 'manage_privacy_options', 'options-privacy.php' ); |
0 | 385 |
|
16 | 386 |
$_wp_last_utility_menu = 80; // The index of the last top-level menu in the utility menu group. |
0 | 387 |
|
388 |
$menu[99] = array( '', 'read', 'separator-last', '', 'wp-menu-separator' ); |
|
389 |
||
16 | 390 |
// Back-compat for old top-levels. |
9 | 391 |
$_wp_real_parent_file['post.php'] = 'edit.php'; |
392 |
$_wp_real_parent_file['post-new.php'] = 'edit.php'; |
|
0 | 393 |
$_wp_real_parent_file['edit-pages.php'] = 'edit.php?post_type=page'; |
9 | 394 |
$_wp_real_parent_file['page-new.php'] = 'edit.php?post_type=page'; |
0 | 395 |
$_wp_real_parent_file['wpmu-admin.php'] = 'tools.php'; |
9 | 396 |
$_wp_real_parent_file['ms-admin.php'] = 'tools.php'; |
0 | 397 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
398 |
// Ensure backward compatibility. |
0 | 399 |
$compat = array( |
9 | 400 |
'index' => 'dashboard', |
401 |
'edit' => 'posts', |
|
402 |
'post' => 'posts', |
|
403 |
'upload' => 'media', |
|
404 |
'link-manager' => 'links', |
|
405 |
'edit-pages' => 'pages', |
|
406 |
'page' => 'pages', |
|
407 |
'edit-comments' => 'comments', |
|
0 | 408 |
'options-general' => 'settings', |
9 | 409 |
'themes' => 'appearance', |
410 |
); |
|
0 | 411 |
|
16 | 412 |
require_once ABSPATH . 'wp-admin/includes/menu.php'; |