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