author | ymh <ymh.work@gmail.com> |
Tue, 15 Oct 2019 15:48:13 +0200 | |
changeset 13 | d255fe9cd479 |
parent 9 | 177826044cd9 |
child 16 | a86126ab1dd4 |
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 |
* |
|
12 |
* The elements in the array are : |
|
13 |
* 0: Menu item name |
|
14 |
* 1: Minimum level or capability required. |
|
15 |
* 2: The URL of the item's file |
|
16 |
* 3: Class |
|
17 |
* 4: ID |
|
18 |
* 5: Icon for top level menu |
|
19 |
* |
|
20 |
* @global array $menu |
|
21 |
*/ |
|
22 |
||
9 | 23 |
$menu[2] = array( __( 'Dashboard' ), 'read', 'index.php', '', 'menu-top menu-top-first menu-icon-dashboard', 'menu-dashboard', 'dashicons-dashboard' ); |
0 | 24 |
|
9 | 25 |
$submenu['index.php'][0] = array( __( 'Home' ), 'read', 'index.php' ); |
0 | 26 |
|
27 |
if ( is_multisite() ) { |
|
9 | 28 |
$submenu['index.php'][5] = array( __( 'My Sites' ), 'read', 'my-sites.php' ); |
0 | 29 |
} |
30 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
31 |
if ( ! is_multisite() || current_user_can( 'update_core' ) ) { |
0 | 32 |
$update_data = wp_get_update_data(); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
33 |
} |
0 | 34 |
|
35 |
if ( ! is_multisite() ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
36 |
if ( current_user_can( 'update_core' ) ) { |
0 | 37 |
$cap = 'update_core'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
38 |
} elseif ( current_user_can( 'update_plugins' ) ) { |
0 | 39 |
$cap = 'update_plugins'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
40 |
} elseif ( current_user_can( 'update_themes' ) ) { |
0 | 41 |
$cap = 'update_themes'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
42 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
43 |
$cap = 'update_languages'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
44 |
} |
9 | 45 |
/* translators: %s: number of pending updates */ |
46 |
$submenu['index.php'][10] = array( sprintf( __( 'Updates %s' ), "<span class='update-plugins count-{$update_data['counts']['total']}'><span class='update-count'>" . number_format_i18n( $update_data['counts']['total'] ) . '</span></span>' ), $cap, 'update-core.php' ); |
|
0 | 47 |
unset( $cap ); |
48 |
} |
|
49 |
||
50 |
$menu[4] = array( '', 'read', 'separator1', '', 'wp-menu-separator' ); |
|
51 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
52 |
// $menu[5] = Posts |
0 | 53 |
|
9 | 54 |
$menu[10] = array( __( 'Media' ), 'upload_files', 'upload.php', '', 'menu-top menu-icon-media', 'menu-media', 'dashicons-admin-media' ); |
55 |
$submenu['upload.php'][5] = array( __( 'Library' ), 'upload_files', 'upload.php' ); |
|
0 | 56 |
/* translators: add new file */ |
9 | 57 |
$submenu['upload.php'][10] = array( _x( 'Add New', 'file' ), 'upload_files', 'media-new.php' ); |
58 |
$i = 15; |
|
59 |
foreach ( get_taxonomies_for_attachments( 'objects' ) as $tax ) { |
|
60 |
if ( ! $tax->show_ui || ! $tax->show_in_menu ) { |
|
61 |
continue; |
|
62 |
} |
|
0 | 63 |
|
9 | 64 |
$submenu['upload.php'][ $i++ ] = array( esc_attr( $tax->labels->menu_name ), $tax->cap->manage_terms, 'edit-tags.php?taxonomy=' . $tax->name . '&post_type=attachment' ); |
65 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
66 |
unset( $tax, $i ); |
0 | 67 |
|
9 | 68 |
$menu[15] = array( __( 'Links' ), 'manage_links', 'link-manager.php', '', 'menu-top menu-icon-links', 'menu-links', 'dashicons-admin-links' ); |
69 |
$submenu['link-manager.php'][5] = array( _x( 'All Links', 'admin menu' ), 'manage_links', 'link-manager.php' ); |
|
0 | 70 |
/* translators: add new links */ |
9 | 71 |
$submenu['link-manager.php'][10] = array( _x( 'Add New', 'link' ), 'manage_links', 'link-add.php' ); |
72 |
$submenu['link-manager.php'][15] = array( __( 'Link Categories' ), 'manage_categories', 'edit-tags.php?taxonomy=link_category' ); |
|
0 | 73 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
74 |
// $menu[20] = Pages |
0 | 75 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
76 |
// 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
|
77 |
if ( current_user_can( 'edit_posts' ) ) { |
9 | 78 |
$awaiting_mod = wp_count_comments(); |
79 |
$awaiting_mod = $awaiting_mod->moderated; |
|
80 |
$awaiting_mod_i18n = number_format_i18n( $awaiting_mod ); |
|
81 |
/* translators: %s: number of comments in moderation */ |
|
82 |
$awaiting_mod_text = sprintf( _n( '%s Comment in moderation', '%s Comments in moderation', $awaiting_mod ), $awaiting_mod_i18n ); |
|
83 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
84 |
$menu[25] = array( |
9 | 85 |
/* translators: %s: number of comments in moderation */ |
86 |
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
|
87 |
'edit_posts', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
88 |
'edit-comments.php', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
89 |
'', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
90 |
'menu-top menu-icon-comments', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
91 |
'menu-comments', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
92 |
'dashicons-admin-comments', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
93 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
94 |
unset( $awaiting_mod ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
95 |
} |
0 | 96 |
|
9 | 97 |
$submenu['edit-comments.php'][0] = array( __( 'All Comments' ), 'edit_posts', 'edit-comments.php' ); |
0 | 98 |
|
99 |
$_wp_last_object_menu = 25; // The index of the last top-level menu in the object menu group |
|
100 |
||
9 | 101 |
$types = (array) get_post_types( |
102 |
array( |
|
103 |
'show_ui' => true, |
|
104 |
'_builtin' => false, |
|
105 |
'show_in_menu' => true, |
|
106 |
) |
|
107 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
108 |
$builtin = array( 'post', 'page' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
109 |
foreach ( array_merge( $builtin, $types ) as $ptype ) { |
0 | 110 |
$ptype_obj = get_post_type_object( $ptype ); |
111 |
// Check if it should be a submenu. |
|
9 | 112 |
if ( $ptype_obj->show_in_menu !== true ) { |
0 | 113 |
continue; |
9 | 114 |
} |
0 | 115 |
$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 | 116 |
$ptype_for_id = sanitize_html_class( $ptype ); |
5 | 117 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
118 |
$menu_icon = 'dashicons-admin-post'; |
0 | 119 |
if ( is_string( $ptype_obj->menu_icon ) ) { |
5 | 120 |
// Special handling for data:image/svg+xml and Dashicons. |
121 |
if ( 0 === strpos( $ptype_obj->menu_icon, 'data:image/svg+xml;base64,' ) || 0 === strpos( $ptype_obj->menu_icon, 'dashicons-' ) ) { |
|
122 |
$menu_icon = $ptype_obj->menu_icon; |
|
123 |
} else { |
|
124 |
$menu_icon = esc_url( $ptype_obj->menu_icon ); |
|
125 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
126 |
} elseif ( in_array( $ptype, $builtin ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
127 |
$menu_icon = 'dashicons-admin-' . $ptype; |
0 | 128 |
} |
129 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
130 |
$menu_class = 'menu-top menu-icon-' . $ptype_for_id; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
131 |
// 'post' special case |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
132 |
if ( 'post' === $ptype ) { |
9 | 133 |
$menu_class .= ' open-if-no-js'; |
134 |
$ptype_file = 'edit.php'; |
|
135 |
$post_new_file = 'post-new.php'; |
|
136 |
$edit_tags_file = 'edit-tags.php?taxonomy=%s'; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
137 |
} else { |
9 | 138 |
$ptype_file = "edit.php?post_type=$ptype"; |
139 |
$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
|
140 |
$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
|
141 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
142 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
143 |
if ( in_array( $ptype, $builtin ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
144 |
$ptype_menu_id = 'menu-' . $ptype_for_id . 's'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
145 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
146 |
$ptype_menu_id = 'menu-posts-' . $ptype_for_id; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
147 |
} |
5 | 148 |
/* |
149 |
* If $ptype_menu_position is already populated or will be populated |
|
150 |
* by a hard-coded value below, increment the position. |
|
151 |
*/ |
|
9 | 152 |
$core_menu_positions = array( 59, 60, 65, 70, 75, 80, 85, 99 ); |
153 |
while ( isset( $menu[ $ptype_menu_position ] ) || in_array( $ptype_menu_position, $core_menu_positions ) ) { |
|
0 | 154 |
$ptype_menu_position++; |
9 | 155 |
} |
0 | 156 |
|
9 | 157 |
$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 ); |
158 |
$submenu[ $ptype_file ][5] = array( $ptype_obj->labels->all_items, $ptype_obj->cap->edit_posts, $ptype_file ); |
|
159 |
$submenu[ $ptype_file ][10] = array( $ptype_obj->labels->add_new, $ptype_obj->cap->create_posts, $post_new_file ); |
|
0 | 160 |
|
161 |
$i = 15; |
|
162 |
foreach ( get_taxonomies( array(), 'objects' ) as $tax ) { |
|
9 | 163 |
if ( ! $tax->show_ui || ! $tax->show_in_menu || ! in_array( $ptype, (array) $tax->object_type, true ) ) { |
0 | 164 |
continue; |
9 | 165 |
} |
0 | 166 |
|
9 | 167 |
$submenu[ $ptype_file ][ $i++ ] = array( esc_attr( $tax->labels->menu_name ), $tax->cap->manage_terms, sprintf( $edit_tags_file, $tax->name ) ); |
0 | 168 |
} |
169 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
170 |
unset( $ptype, $ptype_obj, $ptype_for_id, $ptype_menu_position, $menu_icon, $i, $tax, $post_new_file ); |
0 | 171 |
|
172 |
$menu[59] = array( '', 'read', 'separator2', '', 'wp-menu-separator' ); |
|
173 |
||
9 | 174 |
$appearance_cap = current_user_can( 'switch_themes' ) ? 'switch_themes' : 'edit_theme_options'; |
0 | 175 |
|
9 | 176 |
$menu[60] = array( __( 'Appearance' ), $appearance_cap, 'themes.php', '', 'menu-top menu-icon-appearance', 'menu-appearance', 'dashicons-admin-appearance' ); |
0 | 177 |
$submenu['themes.php'][5] = array( __( 'Themes' ), $appearance_cap, 'themes.php' ); |
5 | 178 |
|
9 | 179 |
$customize_url = add_query_arg( 'return', urlencode( remove_query_arg( wp_removable_query_args(), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ), 'customize.php' ); |
5 | 180 |
$submenu['themes.php'][6] = array( __( 'Customize' ), 'customize', esc_url( $customize_url ), '', 'hide-if-no-customize' ); |
181 |
||
9 | 182 |
if ( current_theme_supports( 'menus' ) || current_theme_supports( 'widgets' ) ) { |
183 |
$submenu['themes.php'][10] = array( __( 'Menus' ), 'edit_theme_options', 'nav-menus.php' ); |
|
184 |
} |
|
5 | 185 |
|
9 | 186 |
if ( current_theme_supports( 'custom-header' ) && current_user_can( 'customize' ) ) { |
187 |
$customize_header_url = add_query_arg( array( 'autofocus' => array( 'control' => 'header_image' ) ), $customize_url ); |
|
188 |
$submenu['themes.php'][15] = array( __( 'Header' ), $appearance_cap, esc_url( $customize_header_url ), '', 'hide-if-no-customize' ); |
|
189 |
} |
|
5 | 190 |
|
9 | 191 |
if ( current_theme_supports( 'custom-background' ) && current_user_can( 'customize' ) ) { |
192 |
$customize_background_url = add_query_arg( array( 'autofocus' => array( 'control' => 'background_image' ) ), $customize_url ); |
|
193 |
$submenu['themes.php'][20] = array( __( 'Background' ), $appearance_cap, esc_url( $customize_background_url ), '', 'hide-if-no-customize' ); |
|
194 |
} |
|
5 | 195 |
|
196 |
unset( $customize_url ); |
|
0 | 197 |
|
198 |
unset( $appearance_cap ); |
|
199 |
||
200 |
// Add 'Editor' to the bottom of the Appearance menu. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
201 |
if ( ! is_multisite() ) { |
9 | 202 |
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
|
203 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
204 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
205 |
* Adds the (theme) 'Editor' link to the bottom of the Appearance menu. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
206 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
207 |
* @access private |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
208 |
* @since 3.0.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
209 |
*/ |
0 | 210 |
function _add_themes_utility_last() { |
211 |
// Must use API on the admin_menu hook, direct modification is only possible on/before the _admin_menu hook |
|
9 | 212 |
add_submenu_page( 'themes.php', __( 'Theme Editor' ), __( 'Theme Editor' ), 'edit_themes', 'theme-editor.php' ); |
0 | 213 |
} |
214 |
||
215 |
$count = ''; |
|
216 |
if ( ! is_multisite() && current_user_can( 'update_plugins' ) ) { |
|
9 | 217 |
if ( ! isset( $update_data ) ) { |
0 | 218 |
$update_data = wp_get_update_data(); |
9 | 219 |
} |
220 |
$count = "<span class='update-plugins count-{$update_data['counts']['plugins']}'><span class='plugin-count'>" . number_format_i18n( $update_data['counts']['plugins'] ) . '</span></span>'; |
|
0 | 221 |
} |
222 |
||
9 | 223 |
/* translators: %s: number of pending plugin updates */ |
224 |
$menu[65] = array( sprintf( __( 'Plugins %s' ), $count ), 'activate_plugins', 'plugins.php', '', 'menu-top menu-icon-plugins', 'menu-plugins', 'dashicons-admin-plugins' ); |
|
0 | 225 |
|
9 | 226 |
$submenu['plugins.php'][5] = array( __( 'Installed Plugins' ), 'activate_plugins', 'plugins.php' ); |
0 | 227 |
|
9 | 228 |
if ( ! is_multisite() ) { |
229 |
/* translators: add new plugin */ |
|
230 |
$submenu['plugins.php'][10] = array( _x( 'Add New', 'plugin' ), 'install_plugins', 'plugin-install.php' ); |
|
231 |
$submenu['plugins.php'][15] = array( __( 'Plugin Editor' ), 'edit_plugins', 'plugin-editor.php' ); |
|
232 |
} |
|
0 | 233 |
|
234 |
unset( $update_data ); |
|
235 |
||
9 | 236 |
if ( current_user_can( 'list_users' ) ) { |
237 |
$menu[70] = array( __( 'Users' ), 'list_users', 'users.php', '', 'menu-top menu-icon-users', 'menu-users', 'dashicons-admin-users' ); |
|
238 |
} else { |
|
239 |
$menu[70] = array( __( 'Profile' ), 'read', 'profile.php', '', 'menu-top menu-icon-users', 'menu-users', 'dashicons-admin-users' ); |
|
240 |
} |
|
0 | 241 |
|
9 | 242 |
if ( current_user_can( 'list_users' ) ) { |
0 | 243 |
$_wp_real_parent_file['profile.php'] = 'users.php'; // Back-compat for plugins adding submenus to profile.php. |
9 | 244 |
$submenu['users.php'][5] = array( __( 'All Users' ), 'list_users', 'users.php' ); |
5 | 245 |
if ( current_user_can( 'create_users' ) ) { |
9 | 246 |
$submenu['users.php'][10] = array( _x( 'Add New', 'user' ), 'create_users', 'user-new.php' ); |
5 | 247 |
} elseif ( is_multisite() ) { |
9 | 248 |
$submenu['users.php'][10] = array( _x( 'Add New', 'user' ), 'promote_users', 'user-new.php' ); |
5 | 249 |
} |
0 | 250 |
|
9 | 251 |
$submenu['users.php'][15] = array( __( 'Your Profile' ), 'read', 'profile.php' ); |
0 | 252 |
} else { |
253 |
$_wp_real_parent_file['users.php'] = 'profile.php'; |
|
9 | 254 |
$submenu['profile.php'][5] = array( __( 'Your Profile' ), 'read', 'profile.php' ); |
5 | 255 |
if ( current_user_can( 'create_users' ) ) { |
9 | 256 |
$submenu['profile.php'][10] = array( __( 'Add New User' ), 'create_users', 'user-new.php' ); |
5 | 257 |
} elseif ( is_multisite() ) { |
9 | 258 |
$submenu['profile.php'][10] = array( __( 'Add New User' ), 'promote_users', 'user-new.php' ); |
5 | 259 |
} |
0 | 260 |
} |
261 |
||
9 | 262 |
$menu[75] = array( __( 'Tools' ), 'edit_posts', 'tools.php', '', 'menu-top menu-icon-tools', 'menu-tools', 'dashicons-admin-tools' ); |
263 |
$submenu['tools.php'][5] = array( __( 'Available Tools' ), 'edit_posts', 'tools.php' ); |
|
264 |
$submenu['tools.php'][10] = array( __( 'Import' ), 'import', 'import.php' ); |
|
265 |
$submenu['tools.php'][15] = array( __( 'Export' ), 'export', 'export.php' ); |
|
266 |
$submenu['tools.php'][20] = array( __( 'Site Health' ), 'view_site_health_checks', 'site-health.php' ); |
|
267 |
if ( is_multisite() && ! is_main_site() ) { |
|
268 |
$submenu['tools.php'][25] = array( __( 'Delete Site' ), 'delete_site', 'ms-delete-site.php' ); |
|
269 |
} |
|
270 |
if ( ! is_multisite() && defined( 'WP_ALLOW_MULTISITE' ) && WP_ALLOW_MULTISITE ) { |
|
271 |
$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
|
272 |
} |
0 | 273 |
|
9 | 274 |
$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
|
275 |
$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
|
276 |
$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
|
277 |
$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
|
278 |
$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
|
279 |
$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
|
280 |
$submenu['options-general.php'][40] = array( __( 'Permalinks' ), 'manage_options', 'options-permalink.php' ); |
9 | 281 |
$submenu['options-general.php'][45] = array( __( 'Privacy' ), 'manage_privacy_options', 'privacy.php' ); |
0 | 282 |
|
283 |
$_wp_last_utility_menu = 80; // The index of the last top-level menu in the utility menu group |
|
284 |
||
285 |
$menu[99] = array( '', 'read', 'separator-last', '', 'wp-menu-separator' ); |
|
286 |
||
287 |
// Back-compat for old top-levels |
|
9 | 288 |
$_wp_real_parent_file['post.php'] = 'edit.php'; |
289 |
$_wp_real_parent_file['post-new.php'] = 'edit.php'; |
|
0 | 290 |
$_wp_real_parent_file['edit-pages.php'] = 'edit.php?post_type=page'; |
9 | 291 |
$_wp_real_parent_file['page-new.php'] = 'edit.php?post_type=page'; |
0 | 292 |
$_wp_real_parent_file['wpmu-admin.php'] = 'tools.php'; |
9 | 293 |
$_wp_real_parent_file['ms-admin.php'] = 'tools.php'; |
0 | 294 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
295 |
// Ensure backward compatibility. |
0 | 296 |
$compat = array( |
9 | 297 |
'index' => 'dashboard', |
298 |
'edit' => 'posts', |
|
299 |
'post' => 'posts', |
|
300 |
'upload' => 'media', |
|
301 |
'link-manager' => 'links', |
|
302 |
'edit-pages' => 'pages', |
|
303 |
'page' => 'pages', |
|
304 |
'edit-comments' => 'comments', |
|
0 | 305 |
'options-general' => 'settings', |
9 | 306 |
'themes' => 'appearance', |
307 |
); |
|
0 | 308 |
|
9 | 309 |
require_once( ABSPATH . 'wp-admin/includes/menu.php' ); |