0
|
1 |
<?php |
|
2 |
/** |
|
3 |
* WordPress Administration for Navigation Menus |
|
4 |
* Interface functions |
|
5 |
* |
|
6 |
* @version 2.0.0 |
|
7 |
* |
|
8 |
* @package WordPress |
|
9 |
* @subpackage Administration |
|
10 |
*/ |
|
11 |
|
|
12 |
/** Load WordPress Administration Bootstrap */ |
|
13 |
require_once( dirname( __FILE__ ) . '/admin.php' ); |
|
14 |
|
|
15 |
// Load all the nav menu interface functions |
|
16 |
require_once( ABSPATH . 'wp-admin/includes/nav-menu.php' ); |
|
17 |
|
|
18 |
if ( ! current_theme_supports( 'menus' ) && ! current_theme_supports( 'widgets' ) ) |
|
19 |
wp_die( __( 'Your theme does not support navigation menus or widgets.' ) ); |
|
20 |
|
|
21 |
// Permissions Check |
|
22 |
if ( ! current_user_can('edit_theme_options') ) |
5
|
23 |
wp_die( __( 'Cheatin’ uh?' ), 403 ); |
0
|
24 |
|
|
25 |
wp_enqueue_script( 'nav-menu' ); |
|
26 |
|
|
27 |
if ( wp_is_mobile() ) |
|
28 |
wp_enqueue_script( 'jquery-touch-punch' ); |
|
29 |
|
|
30 |
// Container for any messages displayed to the user |
|
31 |
$messages = array(); |
|
32 |
|
|
33 |
// Container that stores the name of the active menu |
|
34 |
$nav_menu_selected_title = ''; |
|
35 |
|
|
36 |
// The menu id of the current menu being edited |
|
37 |
$nav_menu_selected_id = isset( $_REQUEST['menu'] ) ? (int) $_REQUEST['menu'] : 0; |
|
38 |
|
|
39 |
// Get existing menu locations assignments |
|
40 |
$locations = get_registered_nav_menus(); |
|
41 |
$menu_locations = get_nav_menu_locations(); |
|
42 |
$num_locations = count( array_keys( $locations ) ); |
|
43 |
|
|
44 |
// Allowed actions: add, update, delete |
|
45 |
$action = isset( $_REQUEST['action'] ) ? $_REQUEST['action'] : 'edit'; |
|
46 |
|
|
47 |
switch ( $action ) { |
|
48 |
case 'add-menu-item': |
|
49 |
check_admin_referer( 'add-menu_item', 'menu-settings-column-nonce' ); |
|
50 |
if ( isset( $_REQUEST['nav-menu-locations'] ) ) |
|
51 |
set_theme_mod( 'nav_menu_locations', array_map( 'absint', $_REQUEST['menu-locations'] ) ); |
|
52 |
elseif ( isset( $_REQUEST['menu-item'] ) ) |
|
53 |
wp_save_nav_menu_items( $nav_menu_selected_id, $_REQUEST['menu-item'] ); |
|
54 |
break; |
|
55 |
case 'move-down-menu-item' : |
5
|
56 |
|
|
57 |
// Moving down a menu item is the same as moving up the next in order. |
0
|
58 |
check_admin_referer( 'move-menu_item' ); |
|
59 |
$menu_item_id = isset( $_REQUEST['menu-item'] ) ? (int) $_REQUEST['menu-item'] : 0; |
|
60 |
if ( is_nav_menu_item( $menu_item_id ) ) { |
|
61 |
$menus = isset( $_REQUEST['menu'] ) ? array( (int) $_REQUEST['menu'] ) : wp_get_object_terms( $menu_item_id, 'nav_menu', array( 'fields' => 'ids' ) ); |
|
62 |
if ( ! is_wp_error( $menus ) && ! empty( $menus[0] ) ) { |
|
63 |
$menu_id = (int) $menus[0]; |
|
64 |
$ordered_menu_items = wp_get_nav_menu_items( $menu_id ); |
|
65 |
$menu_item_data = (array) wp_setup_nav_menu_item( get_post( $menu_item_id ) ); |
|
66 |
|
5
|
67 |
// Set up the data we need in one pass through the array of menu items. |
0
|
68 |
$dbids_to_orders = array(); |
|
69 |
$orders_to_dbids = array(); |
|
70 |
foreach( (array) $ordered_menu_items as $ordered_menu_item_object ) { |
|
71 |
if ( isset( $ordered_menu_item_object->ID ) ) { |
|
72 |
if ( isset( $ordered_menu_item_object->menu_order ) ) { |
|
73 |
$dbids_to_orders[$ordered_menu_item_object->ID] = $ordered_menu_item_object->menu_order; |
|
74 |
$orders_to_dbids[$ordered_menu_item_object->menu_order] = $ordered_menu_item_object->ID; |
|
75 |
} |
|
76 |
} |
|
77 |
} |
|
78 |
|
5
|
79 |
// Get next in order. |
0
|
80 |
if ( |
|
81 |
isset( $orders_to_dbids[$dbids_to_orders[$menu_item_id] + 1] ) |
|
82 |
) { |
|
83 |
$next_item_id = $orders_to_dbids[$dbids_to_orders[$menu_item_id] + 1]; |
|
84 |
$next_item_data = (array) wp_setup_nav_menu_item( get_post( $next_item_id ) ); |
|
85 |
|
5
|
86 |
// If not siblings of same parent, bubble menu item up but keep order. |
0
|
87 |
if ( |
|
88 |
! empty( $menu_item_data['menu_item_parent'] ) && |
|
89 |
( |
|
90 |
empty( $next_item_data['menu_item_parent'] ) || |
|
91 |
$next_item_data['menu_item_parent'] != $menu_item_data['menu_item_parent'] |
|
92 |
) |
|
93 |
) { |
|
94 |
|
|
95 |
$parent_db_id = in_array( $menu_item_data['menu_item_parent'], $orders_to_dbids ) ? (int) $menu_item_data['menu_item_parent'] : 0; |
|
96 |
|
|
97 |
$parent_object = wp_setup_nav_menu_item( get_post( $parent_db_id ) ); |
|
98 |
|
|
99 |
if ( ! is_wp_error( $parent_object ) ) { |
|
100 |
$parent_data = (array) $parent_object; |
|
101 |
$menu_item_data['menu_item_parent'] = $parent_data['menu_item_parent']; |
|
102 |
update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); |
|
103 |
|
|
104 |
} |
|
105 |
|
5
|
106 |
// Make menu item a child of its next sibling. |
0
|
107 |
} else { |
|
108 |
$next_item_data['menu_order'] = $next_item_data['menu_order'] - 1; |
|
109 |
$menu_item_data['menu_order'] = $menu_item_data['menu_order'] + 1; |
|
110 |
|
|
111 |
$menu_item_data['menu_item_parent'] = $next_item_data['ID']; |
|
112 |
update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); |
|
113 |
|
|
114 |
wp_update_post($menu_item_data); |
|
115 |
wp_update_post($next_item_data); |
|
116 |
} |
|
117 |
|
5
|
118 |
// The item is last but still has a parent, so bubble up. |
0
|
119 |
} elseif ( |
|
120 |
! empty( $menu_item_data['menu_item_parent'] ) && |
|
121 |
in_array( $menu_item_data['menu_item_parent'], $orders_to_dbids ) |
|
122 |
) { |
|
123 |
$menu_item_data['menu_item_parent'] = (int) get_post_meta( $menu_item_data['menu_item_parent'], '_menu_item_menu_item_parent', true); |
|
124 |
update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); |
|
125 |
} |
|
126 |
} |
|
127 |
} |
|
128 |
|
|
129 |
break; |
|
130 |
case 'move-up-menu-item' : |
|
131 |
check_admin_referer( 'move-menu_item' ); |
|
132 |
$menu_item_id = isset( $_REQUEST['menu-item'] ) ? (int) $_REQUEST['menu-item'] : 0; |
|
133 |
if ( is_nav_menu_item( $menu_item_id ) ) { |
|
134 |
$menus = isset( $_REQUEST['menu'] ) ? array( (int) $_REQUEST['menu'] ) : wp_get_object_terms( $menu_item_id, 'nav_menu', array( 'fields' => 'ids' ) ); |
|
135 |
if ( ! is_wp_error( $menus ) && ! empty( $menus[0] ) ) { |
|
136 |
$menu_id = (int) $menus[0]; |
|
137 |
$ordered_menu_items = wp_get_nav_menu_items( $menu_id ); |
|
138 |
$menu_item_data = (array) wp_setup_nav_menu_item( get_post( $menu_item_id ) ); |
|
139 |
|
5
|
140 |
// Set up the data we need in one pass through the array of menu items. |
0
|
141 |
$dbids_to_orders = array(); |
|
142 |
$orders_to_dbids = array(); |
|
143 |
foreach( (array) $ordered_menu_items as $ordered_menu_item_object ) { |
|
144 |
if ( isset( $ordered_menu_item_object->ID ) ) { |
|
145 |
if ( isset( $ordered_menu_item_object->menu_order ) ) { |
|
146 |
$dbids_to_orders[$ordered_menu_item_object->ID] = $ordered_menu_item_object->menu_order; |
|
147 |
$orders_to_dbids[$ordered_menu_item_object->menu_order] = $ordered_menu_item_object->ID; |
|
148 |
} |
|
149 |
} |
|
150 |
} |
|
151 |
|
5
|
152 |
// If this menu item is not first. |
0
|
153 |
if ( ! empty( $dbids_to_orders[$menu_item_id] ) && ! empty( $orders_to_dbids[$dbids_to_orders[$menu_item_id] - 1] ) ) { |
|
154 |
|
5
|
155 |
// If this menu item is a child of the previous. |
0
|
156 |
if ( |
|
157 |
! empty( $menu_item_data['menu_item_parent'] ) && |
|
158 |
in_array( $menu_item_data['menu_item_parent'], array_keys( $dbids_to_orders ) ) && |
|
159 |
isset( $orders_to_dbids[$dbids_to_orders[$menu_item_id] - 1] ) && |
|
160 |
( $menu_item_data['menu_item_parent'] == $orders_to_dbids[$dbids_to_orders[$menu_item_id] - 1] ) |
|
161 |
) { |
|
162 |
$parent_db_id = in_array( $menu_item_data['menu_item_parent'], $orders_to_dbids ) ? (int) $menu_item_data['menu_item_parent'] : 0; |
|
163 |
$parent_object = wp_setup_nav_menu_item( get_post( $parent_db_id ) ); |
|
164 |
|
|
165 |
if ( ! is_wp_error( $parent_object ) ) { |
|
166 |
$parent_data = (array) $parent_object; |
|
167 |
|
5
|
168 |
/* |
|
169 |
* If there is something before the parent and parent a child of it, |
|
170 |
* make menu item a child also of it. |
|
171 |
*/ |
0
|
172 |
if ( |
|
173 |
! empty( $dbids_to_orders[$parent_db_id] ) && |
|
174 |
! empty( $orders_to_dbids[$dbids_to_orders[$parent_db_id] - 1] ) && |
|
175 |
! empty( $parent_data['menu_item_parent'] ) |
|
176 |
) { |
|
177 |
$menu_item_data['menu_item_parent'] = $parent_data['menu_item_parent']; |
|
178 |
|
5
|
179 |
/* |
|
180 |
* Else if there is something before parent and parent not a child of it, |
|
181 |
* make menu item a child of that something's parent |
|
182 |
*/ |
0
|
183 |
} elseif ( |
|
184 |
! empty( $dbids_to_orders[$parent_db_id] ) && |
|
185 |
! empty( $orders_to_dbids[$dbids_to_orders[$parent_db_id] - 1] ) |
|
186 |
) { |
|
187 |
$_possible_parent_id = (int) get_post_meta( $orders_to_dbids[$dbids_to_orders[$parent_db_id] - 1], '_menu_item_menu_item_parent', true); |
|
188 |
if ( in_array( $_possible_parent_id, array_keys( $dbids_to_orders ) ) ) |
|
189 |
$menu_item_data['menu_item_parent'] = $_possible_parent_id; |
|
190 |
else |
|
191 |
$menu_item_data['menu_item_parent'] = 0; |
|
192 |
|
5
|
193 |
// Else there isn't something before the parent. |
0
|
194 |
} else { |
|
195 |
$menu_item_data['menu_item_parent'] = 0; |
|
196 |
} |
|
197 |
|
5
|
198 |
// Set former parent's [menu_order] to that of menu-item's. |
0
|
199 |
$parent_data['menu_order'] = $parent_data['menu_order'] + 1; |
|
200 |
|
5
|
201 |
// Set menu-item's [menu_order] to that of former parent. |
0
|
202 |
$menu_item_data['menu_order'] = $menu_item_data['menu_order'] - 1; |
|
203 |
|
5
|
204 |
// Save changes. |
0
|
205 |
update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); |
|
206 |
wp_update_post($menu_item_data); |
|
207 |
wp_update_post($parent_data); |
|
208 |
} |
|
209 |
|
5
|
210 |
// Else this menu item is not a child of the previous. |
0
|
211 |
} elseif ( |
|
212 |
empty( $menu_item_data['menu_order'] ) || |
|
213 |
empty( $menu_item_data['menu_item_parent'] ) || |
|
214 |
! in_array( $menu_item_data['menu_item_parent'], array_keys( $dbids_to_orders ) ) || |
|
215 |
empty( $orders_to_dbids[$dbids_to_orders[$menu_item_id] - 1] ) || |
|
216 |
$orders_to_dbids[$dbids_to_orders[$menu_item_id] - 1] != $menu_item_data['menu_item_parent'] |
|
217 |
) { |
5
|
218 |
// Just make it a child of the previous; keep the order. |
0
|
219 |
$menu_item_data['menu_item_parent'] = (int) $orders_to_dbids[$dbids_to_orders[$menu_item_id] - 1]; |
|
220 |
update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); |
|
221 |
wp_update_post($menu_item_data); |
|
222 |
} |
|
223 |
} |
|
224 |
} |
|
225 |
} |
|
226 |
break; |
|
227 |
|
|
228 |
case 'delete-menu-item': |
|
229 |
$menu_item_id = (int) $_REQUEST['menu-item']; |
|
230 |
|
|
231 |
check_admin_referer( 'delete-menu_item_' . $menu_item_id ); |
|
232 |
|
|
233 |
if ( is_nav_menu_item( $menu_item_id ) && wp_delete_post( $menu_item_id, true ) ) |
5
|
234 |
$messages[] = '<div id="message" class="updated notice is-dismissible"><p>' . __('The menu item has been successfully deleted.') . '</p></div>'; |
0
|
235 |
break; |
|
236 |
|
|
237 |
case 'delete': |
|
238 |
check_admin_referer( 'delete-nav_menu-' . $nav_menu_selected_id ); |
|
239 |
if ( is_nav_menu( $nav_menu_selected_id ) ) { |
|
240 |
$deletion = wp_delete_nav_menu( $nav_menu_selected_id ); |
|
241 |
} else { |
5
|
242 |
// Reset the selected menu. |
0
|
243 |
$nav_menu_selected_id = 0; |
|
244 |
unset( $_REQUEST['menu'] ); |
|
245 |
} |
|
246 |
|
|
247 |
if ( ! isset( $deletion ) ) |
|
248 |
break; |
|
249 |
|
|
250 |
if ( is_wp_error( $deletion ) ) |
5
|
251 |
$messages[] = '<div id="message" class="error notice is-dismissible"><p>' . $deletion->get_error_message() . '</p></div>'; |
0
|
252 |
else |
5
|
253 |
$messages[] = '<div id="message" class="updated notice is-dismissible"><p>' . __( 'The menu has been successfully deleted.' ) . '</p></div>'; |
0
|
254 |
break; |
|
255 |
|
|
256 |
case 'delete_menus': |
|
257 |
check_admin_referer( 'nav_menus_bulk_actions' ); |
|
258 |
foreach ( $_REQUEST['delete_menus'] as $menu_id_to_delete ) { |
|
259 |
if ( ! is_nav_menu( $menu_id_to_delete ) ) |
|
260 |
continue; |
|
261 |
|
|
262 |
$deletion = wp_delete_nav_menu( $menu_id_to_delete ); |
|
263 |
if ( is_wp_error( $deletion ) ) { |
5
|
264 |
$messages[] = '<div id="message" class="error notice is-dismissible"><p>' . $deletion->get_error_message() . '</p></div>'; |
0
|
265 |
$deletion_error = true; |
|
266 |
} |
|
267 |
} |
|
268 |
|
|
269 |
if ( empty( $deletion_error ) ) |
5
|
270 |
$messages[] = '<div id="message" class="updated notice is-dismissible"><p>' . __( 'Selected menus have been successfully deleted.' ) . '</p></div>'; |
0
|
271 |
break; |
|
272 |
|
|
273 |
case 'update': |
|
274 |
check_admin_referer( 'update-nav_menu', 'update-nav-menu-nonce' ); |
|
275 |
|
5
|
276 |
// Remove menu locations that have been unchecked. |
0
|
277 |
foreach ( $locations as $location => $description ) { |
|
278 |
if ( ( empty( $_POST['menu-locations'] ) || empty( $_POST['menu-locations'][ $location ] ) ) && isset( $menu_locations[ $location ] ) && $menu_locations[ $location ] == $nav_menu_selected_id ) |
|
279 |
unset( $menu_locations[ $location ] ); |
|
280 |
} |
|
281 |
|
5
|
282 |
// Merge new and existing menu locations if any new ones are set. |
0
|
283 |
if ( isset( $_POST['menu-locations'] ) ) { |
|
284 |
$new_menu_locations = array_map( 'absint', $_POST['menu-locations'] ); |
|
285 |
$menu_locations = array_merge( $menu_locations, $new_menu_locations ); |
|
286 |
} |
|
287 |
|
5
|
288 |
// Set menu locations. |
0
|
289 |
set_theme_mod( 'nav_menu_locations', $menu_locations ); |
|
290 |
|
5
|
291 |
// Add Menu. |
0
|
292 |
if ( 0 == $nav_menu_selected_id ) { |
|
293 |
$new_menu_title = trim( esc_html( $_POST['menu-name'] ) ); |
|
294 |
|
|
295 |
if ( $new_menu_title ) { |
|
296 |
$_nav_menu_selected_id = wp_update_nav_menu_object( 0, array('menu-name' => $new_menu_title) ); |
|
297 |
|
|
298 |
if ( is_wp_error( $_nav_menu_selected_id ) ) { |
5
|
299 |
$messages[] = '<div id="message" class="error notice is-dismissible"><p>' . $_nav_menu_selected_id->get_error_message() . '</p></div>'; |
0
|
300 |
} else { |
|
301 |
$_menu_object = wp_get_nav_menu_object( $_nav_menu_selected_id ); |
|
302 |
$nav_menu_selected_id = $_nav_menu_selected_id; |
|
303 |
$nav_menu_selected_title = $_menu_object->name; |
|
304 |
if ( isset( $_REQUEST['menu-item'] ) ) |
|
305 |
wp_save_nav_menu_items( $nav_menu_selected_id, absint( $_REQUEST['menu-item'] ) ); |
|
306 |
if ( isset( $_REQUEST['zero-menu-state'] ) ) { |
|
307 |
// If there are menu items, add them |
|
308 |
wp_nav_menu_update_menu_items( $nav_menu_selected_id, $nav_menu_selected_title ); |
|
309 |
// Auto-save nav_menu_locations |
|
310 |
$locations = get_nav_menu_locations(); |
|
311 |
foreach ( $locations as $location => $menu_id ) { |
|
312 |
$locations[ $location ] = $nav_menu_selected_id; |
|
313 |
break; // There should only be 1 |
|
314 |
} |
|
315 |
set_theme_mod( 'nav_menu_locations', $locations ); |
|
316 |
} |
|
317 |
if ( isset( $_REQUEST['use-location'] ) ) { |
|
318 |
$locations = get_registered_nav_menus(); |
|
319 |
$menu_locations = get_nav_menu_locations(); |
|
320 |
if ( isset( $locations[ $_REQUEST['use-location'] ] ) ) |
|
321 |
$menu_locations[ $_REQUEST['use-location'] ] = $nav_menu_selected_id; |
|
322 |
set_theme_mod( 'nav_menu_locations', $menu_locations ); |
|
323 |
} |
5
|
324 |
|
0
|
325 |
// $messages[] = '<div id="message" class="updated"><p>' . sprintf( __( '<strong>%s</strong> has been created.' ), $nav_menu_selected_title ) . '</p></div>'; |
|
326 |
wp_redirect( admin_url( 'nav-menus.php?menu=' . $_nav_menu_selected_id ) ); |
|
327 |
exit(); |
|
328 |
} |
|
329 |
} else { |
5
|
330 |
$messages[] = '<div id="message" class="error notice is-dismissible"><p>' . __( 'Please enter a valid menu name.' ) . '</p></div>'; |
0
|
331 |
} |
|
332 |
|
5
|
333 |
// Update existing menu. |
0
|
334 |
} else { |
|
335 |
|
|
336 |
$_menu_object = wp_get_nav_menu_object( $nav_menu_selected_id ); |
|
337 |
|
|
338 |
$menu_title = trim( esc_html( $_POST['menu-name'] ) ); |
|
339 |
if ( ! $menu_title ) { |
5
|
340 |
$messages[] = '<div id="message" class="error notice is-dismissible"><p>' . __( 'Please enter a valid menu name.' ) . '</p></div>'; |
0
|
341 |
$menu_title = $_menu_object->name; |
|
342 |
} |
|
343 |
|
|
344 |
if ( ! is_wp_error( $_menu_object ) ) { |
|
345 |
$_nav_menu_selected_id = wp_update_nav_menu_object( $nav_menu_selected_id, array( 'menu-name' => $menu_title ) ); |
|
346 |
if ( is_wp_error( $_nav_menu_selected_id ) ) { |
|
347 |
$_menu_object = $_nav_menu_selected_id; |
5
|
348 |
$messages[] = '<div id="message" class="error notice is-dismissible"><p>' . $_nav_menu_selected_id->get_error_message() . '</p></div>'; |
0
|
349 |
} else { |
|
350 |
$_menu_object = wp_get_nav_menu_object( $_nav_menu_selected_id ); |
|
351 |
$nav_menu_selected_title = $_menu_object->name; |
|
352 |
} |
|
353 |
} |
|
354 |
|
5
|
355 |
// Update menu items. |
0
|
356 |
if ( ! is_wp_error( $_menu_object ) ) { |
|
357 |
$messages = array_merge( $messages, wp_nav_menu_update_menu_items( $nav_menu_selected_id, $nav_menu_selected_title ) ); |
|
358 |
} |
|
359 |
} |
|
360 |
break; |
|
361 |
case 'locations': |
|
362 |
if ( ! $num_locations ) { |
|
363 |
wp_redirect( admin_url( 'nav-menus.php' ) ); |
|
364 |
exit(); |
|
365 |
} |
|
366 |
|
|
367 |
add_filter( 'screen_options_show_screen', '__return_false' ); |
|
368 |
|
|
369 |
if ( isset( $_POST['menu-locations'] ) ) { |
|
370 |
check_admin_referer( 'save-menu-locations' ); |
|
371 |
|
|
372 |
$new_menu_locations = array_map( 'absint', $_POST['menu-locations'] ); |
|
373 |
$menu_locations = array_merge( $menu_locations, $new_menu_locations ); |
|
374 |
// Set menu locations |
|
375 |
set_theme_mod( 'nav_menu_locations', $menu_locations ); |
|
376 |
|
5
|
377 |
$messages[] = '<div id="message" class="updated notice is-dismissible"><p>' . __( 'Menu locations updated.' ) . '</p></div>'; |
0
|
378 |
} |
|
379 |
break; |
|
380 |
} |
|
381 |
|
5
|
382 |
// Get all nav menus. |
|
383 |
$nav_menus = wp_get_nav_menus(); |
0
|
384 |
$menu_count = count( $nav_menus ); |
|
385 |
|
|
386 |
// Are we on the add new screen? |
|
387 |
$add_new_screen = ( isset( $_GET['menu'] ) && 0 == $_GET['menu'] ) ? true : false; |
|
388 |
|
|
389 |
$locations_screen = ( isset( $_GET['action'] ) && 'locations' == $_GET['action'] ) ? true : false; |
|
390 |
|
5
|
391 |
/* |
|
392 |
* If we have one theme location, and zero menus, we take them right |
|
393 |
* into editing their first menu. |
|
394 |
*/ |
0
|
395 |
$page_count = wp_count_posts( 'page' ); |
|
396 |
$one_theme_location_no_menus = ( 1 == count( get_registered_nav_menus() ) && ! $add_new_screen && empty( $nav_menus ) && ! empty( $page_count->publish ) ) ? true : false; |
|
397 |
|
|
398 |
$nav_menus_l10n = array( |
|
399 |
'oneThemeLocationNoMenus' => $one_theme_location_no_menus, |
|
400 |
'moveUp' => __( 'Move up one' ), |
|
401 |
'moveDown' => __( 'Move down one' ), |
|
402 |
'moveToTop' => __( 'Move to the top' ), |
|
403 |
/* translators: %s: previous item name */ |
|
404 |
'moveUnder' => __( 'Move under %s' ), |
|
405 |
/* translators: %s: previous item name */ |
|
406 |
'moveOutFrom' => __( 'Move out from under %s' ), |
|
407 |
/* translators: %s: previous item name */ |
|
408 |
'under' => __( 'Under %s' ), |
|
409 |
/* translators: %s: previous item name */ |
|
410 |
'outFrom' => __( 'Out from under %s' ), |
|
411 |
/* translators: 1: item name, 2: item position, 3: total number of items */ |
|
412 |
'menuFocus' => __( '%1$s. Menu item %2$d of %3$d.' ), |
|
413 |
/* translators: 1: item name, 2: item position, 3: parent item name */ |
|
414 |
'subMenuFocus' => __( '%1$s. Sub item number %2$d under %3$s.' ), |
|
415 |
); |
|
416 |
wp_localize_script( 'nav-menu', 'menus', $nav_menus_l10n ); |
|
417 |
|
5
|
418 |
/* |
|
419 |
* Redirect to add screen if there are no menus and this users has either zero, |
|
420 |
* or more than 1 theme locations. |
|
421 |
*/ |
0
|
422 |
if ( 0 == $menu_count && ! $add_new_screen && ! $one_theme_location_no_menus ) |
|
423 |
wp_redirect( admin_url( 'nav-menus.php?action=edit&menu=0' ) ); |
|
424 |
|
5
|
425 |
// Get recently edited nav menu. |
0
|
426 |
$recently_edited = absint( get_user_option( 'nav_menu_recently_edited' ) ); |
|
427 |
if ( empty( $recently_edited ) && is_nav_menu( $nav_menu_selected_id ) ) |
|
428 |
$recently_edited = $nav_menu_selected_id; |
|
429 |
|
5
|
430 |
// Use $recently_edited if none are selected. |
0
|
431 |
if ( empty( $nav_menu_selected_id ) && ! isset( $_GET['menu'] ) && is_nav_menu( $recently_edited ) ) |
|
432 |
$nav_menu_selected_id = $recently_edited; |
|
433 |
|
5
|
434 |
// On deletion of menu, if another menu exists, show it. |
0
|
435 |
if ( ! $add_new_screen && 0 < $menu_count && isset( $_GET['action'] ) && 'delete' == $_GET['action'] ) |
|
436 |
$nav_menu_selected_id = $nav_menus[0]->term_id; |
|
437 |
|
5
|
438 |
// Set $nav_menu_selected_id to 0 if no menus. |
0
|
439 |
if ( $one_theme_location_no_menus ) { |
|
440 |
$nav_menu_selected_id = 0; |
|
441 |
} elseif ( empty( $nav_menu_selected_id ) && ! empty( $nav_menus ) && ! $add_new_screen ) { |
5
|
442 |
// if we have no selection yet, and we have menus, set to the first one in the list. |
0
|
443 |
$nav_menu_selected_id = $nav_menus[0]->term_id; |
|
444 |
} |
|
445 |
|
5
|
446 |
// Update the user's setting. |
0
|
447 |
if ( $nav_menu_selected_id != $recently_edited && is_nav_menu( $nav_menu_selected_id ) ) |
|
448 |
update_user_meta( $current_user->ID, 'nav_menu_recently_edited', $nav_menu_selected_id ); |
|
449 |
|
|
450 |
// If there's a menu, get its name. |
|
451 |
if ( ! $nav_menu_selected_title && is_nav_menu( $nav_menu_selected_id ) ) { |
|
452 |
$_menu_object = wp_get_nav_menu_object( $nav_menu_selected_id ); |
|
453 |
$nav_menu_selected_title = ! is_wp_error( $_menu_object ) ? $_menu_object->name : ''; |
|
454 |
} |
|
455 |
|
5
|
456 |
// Generate truncated menu names. |
0
|
457 |
foreach( (array) $nav_menus as $key => $_nav_menu ) { |
|
458 |
$nav_menus[$key]->truncated_name = wp_html_excerpt( $_nav_menu->name, 40, '…' ); |
|
459 |
} |
|
460 |
|
5
|
461 |
// Retrieve menu locations. |
0
|
462 |
if ( current_theme_supports( 'menus' ) ) { |
|
463 |
$locations = get_registered_nav_menus(); |
|
464 |
$menu_locations = get_nav_menu_locations(); |
|
465 |
} |
|
466 |
|
5
|
467 |
/* |
|
468 |
* Ensure the user will be able to scroll horizontally |
|
469 |
* by adding a class for the max menu depth. |
|
470 |
*/ |
0
|
471 |
global $_wp_nav_menu_max_depth; |
|
472 |
$_wp_nav_menu_max_depth = 0; |
|
473 |
|
5
|
474 |
// Calling wp_get_nav_menu_to_edit generates $_wp_nav_menu_max_depth. |
0
|
475 |
if ( is_nav_menu( $nav_menu_selected_id ) ) { |
|
476 |
$menu_items = wp_get_nav_menu_items( $nav_menu_selected_id, array( 'post_status' => 'any' ) ); |
|
477 |
$edit_markup = wp_get_nav_menu_to_edit( $nav_menu_selected_id ); |
|
478 |
} |
|
479 |
|
|
480 |
function wp_nav_menu_max_depth($classes) { |
|
481 |
global $_wp_nav_menu_max_depth; |
|
482 |
return "$classes menu-max-depth-$_wp_nav_menu_max_depth"; |
|
483 |
} |
|
484 |
|
|
485 |
add_filter('admin_body_class', 'wp_nav_menu_max_depth'); |
|
486 |
|
|
487 |
wp_nav_menu_setup(); |
|
488 |
wp_initial_nav_menu_meta_boxes(); |
|
489 |
|
|
490 |
if ( ! current_theme_supports( 'menus' ) && ! $num_locations ) |
|
491 |
$messages[] = '<div id="message" class="updated"><p>' . sprintf( __( 'Your theme does not natively support menus, but you can use them in sidebars by adding a “Custom Menu” widget on the <a href="%s">Widgets</a> screen.' ), admin_url( 'widgets.php' ) ) . '</p></div>'; |
|
492 |
|
|
493 |
if ( ! $locations_screen ) : // Main tab |
|
494 |
$overview = '<p>' . __( 'This screen is used for managing your custom navigation menus.' ) . '</p>'; |
5
|
495 |
$overview .= '<p>' . sprintf( __( 'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Custom Menu” widget on the <a href="%1$s">Widgets</a> screen. If your theme does not support the custom menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the Documentation link to the side.' ), admin_url( 'widgets.php' ), 'Twenty Fifteen', 'Twenty Fourteen' ) . '</p>'; |
0
|
496 |
$overview .= '<p>' . __( 'From this screen you can:' ) . '</p>'; |
|
497 |
$overview .= '<ul><li>' . __( 'Create, edit, and delete menus' ) . '</li>'; |
|
498 |
$overview .= '<li>' . __( 'Add, organize, and modify individual menu items' ) . '</li></ul>'; |
|
499 |
|
|
500 |
get_current_screen()->add_help_tab( array( |
|
501 |
'id' => 'overview', |
|
502 |
'title' => __( 'Overview' ), |
|
503 |
'content' => $overview |
|
504 |
) ); |
|
505 |
|
|
506 |
$menu_management = '<p>' . __( 'The menu management box at the top of the screen is used to control which menu is opened in the editor below.' ) . '</p>'; |
|
507 |
$menu_management .= '<ul><li>' . __( 'To edit an existing menu, <strong>choose a menu from the drop down and click Select</strong>' ) . '</li>'; |
|
508 |
$menu_management .= '<li>' . __( 'If you haven’t yet created any menus, <strong>click the ’create a new menu’ link</strong> to get started' ) . '</li></ul>'; |
|
509 |
$menu_management .= '<p>' . __( 'You can assign theme locations to individual menus by <strong>selecting the desired settings</strong> at the bottom of the menu editor. To assign menus to all theme locations at once, <strong>visit the Manage Locations tab</strong> at the top of the screen.' ) . '</p>'; |
|
510 |
|
|
511 |
get_current_screen()->add_help_tab( array( |
|
512 |
'id' => 'menu-management', |
|
513 |
'title' => __( 'Menu Management' ), |
|
514 |
'content' => $menu_management |
|
515 |
) ); |
|
516 |
|
|
517 |
$editing_menus = '<p>' . __( 'Each custom menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below.' ) . '</p>'; |
|
518 |
$editing_menus .= '<p>' . __( '<strong>Clicking the arrow to the right of any menu item</strong> in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab.' ) . '</p>'; |
|
519 |
$editing_menus .= '<ul><li>' . __( 'Add one or several items at once by <strong>selecting the checkbox next to each item and clicking Add to Menu</strong>' ) . '</li>'; |
5
|
520 |
$editing_menus .= '<li>' . __( 'To add a custom link, <strong>expand the Custom Links section, enter a URL and link text, and click Add to Menu</strong>' ) .'</li>'; |
0
|
521 |
$editing_menus .= '<li>' . __( 'To reorganize menu items, <strong>drag and drop items with your mouse or use your keyboard</strong>. Drag or move a menu item a little to the right to make it a submenu' ) . '</li>'; |
|
522 |
$editing_menus .= '<li>' . __( 'Delete a menu item by <strong>expanding it and clicking the Remove link</strong>' ) . '</li></ul>'; |
|
523 |
|
|
524 |
get_current_screen()->add_help_tab( array( |
|
525 |
'id' => 'editing-menus', |
|
526 |
'title' => __( 'Editing Menus' ), |
|
527 |
'content' => $editing_menus |
|
528 |
) ); |
5
|
529 |
else : // Locations Tab. |
0
|
530 |
$locations_overview = '<p>' . __( 'This screen is used for globally assigning menus to locations defined by your theme.' ) . '</p>'; |
|
531 |
$locations_overview .= '<ul><li>' . __( 'To assign menus to one or more theme locations, <strong>select a menu from each location’s drop down.</strong> When you’re finished, <strong>click Save Changes</strong>' ) . '</li>'; |
|
532 |
$locations_overview .= '<li>' . __( 'To edit a menu currently assigned to a theme location, <strong>click the adjacent ’Edit’ link</strong>' ) . '</li>'; |
|
533 |
$locations_overview .= '<li>' . __( 'To add a new menu instead of assigning an existing one, <strong>click the ’Use new menu’ link</strong>. Your new menu will be automatically assigned to that theme location' ) . '</li></ul>'; |
|
534 |
|
|
535 |
get_current_screen()->add_help_tab( array( |
|
536 |
'id' => 'locations-overview', |
|
537 |
'title' => __( 'Overview' ), |
|
538 |
'content' => $locations_overview |
|
539 |
) ); |
|
540 |
endif; |
|
541 |
|
|
542 |
get_current_screen()->set_help_sidebar( |
|
543 |
'<p><strong>' . __('For more information:') . '</strong></p>' . |
5
|
544 |
'<p>' . __('<a href="https://codex.wordpress.org/Appearance_Menus_Screen" target="_blank">Documentation on Menus</a>') . '</p>' . |
|
545 |
'<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' |
0
|
546 |
); |
|
547 |
|
5
|
548 |
// Get the admin header. |
0
|
549 |
require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
|
550 |
?> |
|
551 |
<div class="wrap"> |
|
552 |
<h2 class="nav-tab-wrapper"> |
|
553 |
<a href="<?php echo admin_url( 'nav-menus.php' ); ?>" class="nav-tab<?php if ( ! isset( $_GET['action'] ) || isset( $_GET['action'] ) && 'locations' != $_GET['action'] ) echo ' nav-tab-active'; ?>"><?php esc_html_e( 'Edit Menus' ); ?></a> |
|
554 |
<?php if ( $num_locations && $menu_count ) : ?> |
|
555 |
<a href="<?php echo esc_url( add_query_arg( array( 'action' => 'locations' ), admin_url( 'nav-menus.php' ) ) ); ?>" class="nav-tab<?php if ( $locations_screen ) echo ' nav-tab-active'; ?>"><?php esc_html_e( 'Manage Locations' ); ?></a> |
|
556 |
<?php endif; ?> |
|
557 |
</h2> |
|
558 |
<?php |
|
559 |
foreach( $messages as $message ) : |
|
560 |
echo $message . "\n"; |
|
561 |
endforeach; |
|
562 |
?> |
|
563 |
<?php |
|
564 |
if ( $locations_screen ) : |
5
|
565 |
if ( 1 == $num_locations ) { |
|
566 |
echo '<p>' . __( 'Your theme supports one menu. Select which menu you would like to use.' ) . '</p>'; |
|
567 |
} else { |
|
568 |
echo '<p>' . sprintf( _n( 'Your theme supports %s menu. Select which menu appears in each location.', 'Your theme supports %s menus. Select which menu appears in each location.', $num_locations ), number_format_i18n( $num_locations ) ) . '</p>'; |
|
569 |
} |
0
|
570 |
?> |
|
571 |
<div id="menu-locations-wrap"> |
|
572 |
<form method="post" action="<?php echo esc_url( add_query_arg( array( 'action' => 'locations' ), admin_url( 'nav-menus.php' ) ) ); ?>"> |
5
|
573 |
<table class="widefat fixed" id="menu-locations-table"> |
0
|
574 |
<thead> |
|
575 |
<tr> |
|
576 |
<th scope="col" class="manage-column column-locations"><?php _e( 'Theme Location' ); ?></th> |
|
577 |
<th scope="col" class="manage-column column-menus"><?php _e( 'Assigned Menu' ); ?></th> |
|
578 |
</tr> |
|
579 |
</thead> |
|
580 |
<tbody class="menu-locations"> |
|
581 |
<?php foreach ( $locations as $_location => $_name ) { ?> |
5
|
582 |
<tr class="menu-locations-row"> |
|
583 |
<td class="menu-location-title"><label for="locations-<?php echo $_location; ?>"><?php echo $_name; ?></label></td> |
0
|
584 |
<td class="menu-location-menus"> |
|
585 |
<select name="menu-locations[<?php echo $_location; ?>]" id="locations-<?php echo $_location; ?>"> |
|
586 |
<option value="0"><?php printf( '— %s —', esc_html__( 'Select a Menu' ) ); ?></option> |
|
587 |
<?php foreach ( $nav_menus as $menu ) : ?> |
|
588 |
<?php $selected = isset( $menu_locations[$_location] ) && $menu_locations[$_location] == $menu->term_id; ?> |
|
589 |
<option <?php if ( $selected ) echo 'data-orig="true"'; ?> <?php selected( $selected ); ?> value="<?php echo $menu->term_id; ?>"> |
|
590 |
<?php echo wp_html_excerpt( $menu->name, 40, '…' ); ?> |
|
591 |
</option> |
|
592 |
<?php endforeach; ?> |
|
593 |
</select> |
|
594 |
<div class="locations-row-links"> |
|
595 |
<?php if ( isset( $menu_locations[ $_location ] ) && 0 != $menu_locations[ $_location ] ) : ?> |
|
596 |
<span class="locations-edit-menu-link"> |
|
597 |
<a href="<?php echo esc_url( add_query_arg( array( 'action' => 'edit', 'menu' => $menu_locations[$_location] ), admin_url( 'nav-menus.php' ) ) ); ?>"> |
5
|
598 |
<span aria-hidden="true"><?php _ex( 'Edit', 'menu' ); ?></span><span class="screen-reader-text"><?php _e( 'Edit selected menu' ); ?></span> |
0
|
599 |
</a> |
|
600 |
</span> |
|
601 |
<?php endif; ?> |
|
602 |
<span class="locations-add-menu-link"> |
|
603 |
<a href="<?php echo esc_url( add_query_arg( array( 'action' => 'edit', 'menu' => 0, 'use-location' => $_location ), admin_url( 'nav-menus.php' ) ) ); ?>"> |
|
604 |
<?php _ex( 'Use new menu', 'menu' ); ?> |
|
605 |
</a> |
|
606 |
</span> |
5
|
607 |
</div><!-- .locations-row-links --> |
0
|
608 |
</td><!-- .menu-location-menus --> |
5
|
609 |
</tr><!-- .menu-locations-row --> |
0
|
610 |
<?php } // foreach ?> |
|
611 |
</tbody> |
|
612 |
</table> |
|
613 |
<p class="button-controls"><?php submit_button( __( 'Save Changes' ), 'primary left', 'nav-menu-locations', false ); ?></p> |
|
614 |
<?php wp_nonce_field( 'save-menu-locations' ); ?> |
|
615 |
<input type="hidden" name="menu" id="nav-menu-meta-object-id" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" /> |
|
616 |
</form> |
|
617 |
</div><!-- #menu-locations-wrap --> |
5
|
618 |
<?php |
|
619 |
/** |
|
620 |
* Fires after the menu locations table is displayed. |
|
621 |
* |
|
622 |
* @since 3.6.0 |
|
623 |
*/ |
|
624 |
do_action( 'after_menu_locations_table' ); ?> |
0
|
625 |
<?php else : ?> |
|
626 |
<div class="manage-menus"> |
|
627 |
<?php if ( $menu_count < 2 ) : ?> |
|
628 |
<span class="add-edit-menu-action"> |
|
629 |
<?php printf( __( 'Edit your menu below, or <a href="%s">create a new menu</a>.' ), esc_url( add_query_arg( array( 'action' => 'edit', 'menu' => 0 ), admin_url( 'nav-menus.php' ) ) ) ); ?> |
|
630 |
</span><!-- /add-edit-menu-action --> |
|
631 |
<?php else : ?> |
|
632 |
<form method="get" action="<?php echo admin_url( 'nav-menus.php' ); ?>"> |
|
633 |
<input type="hidden" name="action" value="edit" /> |
|
634 |
<label for="menu" class="selected-menu"><?php _e( 'Select a menu to edit:' ); ?></label> |
|
635 |
<select name="menu" id="menu"> |
|
636 |
<?php if ( $add_new_screen ) : ?> |
5
|
637 |
<option value="0" selected="selected"><?php _e( '— Select —' ); ?></option> |
0
|
638 |
<?php endif; ?> |
|
639 |
<?php foreach( (array) $nav_menus as $_nav_menu ) : ?> |
|
640 |
<option value="<?php echo esc_attr( $_nav_menu->term_id ); ?>" <?php selected( $_nav_menu->term_id, $nav_menu_selected_id ); ?>> |
|
641 |
<?php |
|
642 |
echo esc_html( $_nav_menu->truncated_name ) ; |
|
643 |
|
|
644 |
if ( ! empty( $menu_locations ) && in_array( $_nav_menu->term_id, $menu_locations ) ) { |
|
645 |
$locations_assigned_to_this_menu = array(); |
|
646 |
foreach ( array_keys( $menu_locations, $_nav_menu->term_id ) as $menu_location_key ) { |
5
|
647 |
if ( isset( $locations[ $menu_location_key ] ) ) { |
|
648 |
$locations_assigned_to_this_menu[] = $locations[ $menu_location_key ]; |
|
649 |
} |
0
|
650 |
} |
5
|
651 |
|
|
652 |
/** |
|
653 |
* Filter the number of locations listed per menu in the drop-down select. |
|
654 |
* |
|
655 |
* @since 3.6.0 |
|
656 |
* |
|
657 |
* @param int $locations Number of menu locations to list. Default 3. |
|
658 |
*/ |
0
|
659 |
$assigned_locations = array_slice( $locations_assigned_to_this_menu, 0, absint( apply_filters( 'wp_nav_locations_listed_per_menu', 3 ) ) ); |
|
660 |
|
5
|
661 |
// Adds ellipses following the number of locations defined in $assigned_locations. |
|
662 |
if ( ! empty( $assigned_locations ) ) { |
|
663 |
printf( ' (%1$s%2$s)', |
|
664 |
implode( ', ', $assigned_locations ), |
|
665 |
count( $locations_assigned_to_this_menu ) > count( $assigned_locations ) ? ' …' : '' |
|
666 |
); |
|
667 |
} |
0
|
668 |
} |
|
669 |
?> |
|
670 |
</option> |
|
671 |
<?php endforeach; ?> |
|
672 |
</select> |
5
|
673 |
<span class="submit-btn"><input type="submit" class="button-secondary" value="<?php esc_attr_e( 'Select' ); ?>"></span> |
0
|
674 |
<span class="add-new-menu-action"> |
|
675 |
<?php printf( __( 'or <a href="%s">create a new menu</a>.' ), esc_url( add_query_arg( array( 'action' => 'edit', 'menu' => 0 ), admin_url( 'nav-menus.php' ) ) ) ); ?> |
|
676 |
</span><!-- /add-new-menu-action --> |
|
677 |
</form> |
|
678 |
<?php endif; ?> |
|
679 |
</div><!-- /manage-menus --> |
|
680 |
<div id="nav-menus-frame"> |
|
681 |
<div id="menu-settings-column" class="metabox-holder<?php if ( isset( $_GET['menu'] ) && '0' == $_GET['menu'] ) { echo ' metabox-holder-disabled'; } ?>"> |
|
682 |
|
|
683 |
<div class="clear"></div> |
|
684 |
|
5
|
685 |
<form id="nav-menu-meta" class="nav-menu-meta" method="post" enctype="multipart/form-data"> |
0
|
686 |
<input type="hidden" name="menu" id="nav-menu-meta-object-id" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" /> |
|
687 |
<input type="hidden" name="action" value="add-menu-item" /> |
|
688 |
<?php wp_nonce_field( 'add-menu_item', 'menu-settings-column-nonce' ); ?> |
|
689 |
<?php do_accordion_sections( 'nav-menus', 'side', null ); ?> |
|
690 |
</form> |
|
691 |
|
|
692 |
</div><!-- /#menu-settings-column --> |
|
693 |
<div id="menu-management-liquid"> |
|
694 |
<div id="menu-management"> |
5
|
695 |
<form id="update-nav-menu" method="post" enctype="multipart/form-data"> |
0
|
696 |
<div class="menu-edit <?php if ( $add_new_screen ) echo 'blank-slate'; ?>"> |
|
697 |
<?php |
|
698 |
wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); |
|
699 |
wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); |
|
700 |
wp_nonce_field( 'update-nav_menu', 'update-nav-menu-nonce' ); |
|
701 |
|
|
702 |
if ( $one_theme_location_no_menus ) { ?> |
|
703 |
<input type="hidden" name="zero-menu-state" value="true" /> |
|
704 |
<?php } ?> |
|
705 |
<input type="hidden" name="action" value="update" /> |
|
706 |
<input type="hidden" name="menu" id="menu" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" /> |
|
707 |
<div id="nav-menu-header"> |
|
708 |
<div class="major-publishing-actions"> |
|
709 |
<label class="menu-name-label howto open-label" for="menu-name"> |
|
710 |
<span><?php _e( 'Menu Name' ); ?></span> |
|
711 |
<input name="menu-name" id="menu-name" type="text" class="menu-name regular-text menu-item-textbox input-with-default-title" title="<?php esc_attr_e( 'Enter menu name here' ); ?>" value="<?php if ( $one_theme_location_no_menus ) _e( 'Menu 1' ); else echo esc_attr( $nav_menu_selected_title ); ?>" /> |
|
712 |
</label> |
|
713 |
<div class="publishing-action"> |
|
714 |
<?php submit_button( empty( $nav_menu_selected_id ) ? __( 'Create Menu' ) : __( 'Save Menu' ), 'button-primary menu-save', 'save_menu', false, array( 'id' => 'save_menu_header' ) ); ?> |
|
715 |
</div><!-- END .publishing-action --> |
|
716 |
</div><!-- END .major-publishing-actions --> |
|
717 |
</div><!-- END .nav-menu-header --> |
|
718 |
<div id="post-body"> |
|
719 |
<div id="post-body-content"> |
|
720 |
<?php if ( ! $add_new_screen ) : ?> |
|
721 |
<h3><?php _e( 'Menu Structure' ); ?></h3> |
|
722 |
<?php $starter_copy = ( $one_theme_location_no_menus ) ? __( 'Edit your default menu by adding or removing items. Drag each item into the order you prefer. Click Create Menu to save your changes.' ) : __( 'Drag each item into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options.' ); ?> |
|
723 |
<div class="drag-instructions post-body-plain" <?php if ( isset( $menu_items ) && 0 == count( $menu_items ) ) { ?>style="display: none;"<?php } ?>> |
|
724 |
<p><?php echo $starter_copy; ?></p> |
|
725 |
</div> |
|
726 |
<?php |
|
727 |
if ( isset( $edit_markup ) && ! is_wp_error( $edit_markup ) ) { |
|
728 |
echo $edit_markup; |
|
729 |
} else { |
|
730 |
?> |
|
731 |
<ul class="menu" id="menu-to-edit"></ul> |
|
732 |
<?php } ?> |
|
733 |
<?php endif; ?> |
|
734 |
<?php if ( $add_new_screen ) : ?> |
|
735 |
<p class="post-body-plain"><?php _e( 'Give your menu a name above, then click Create Menu.' ); ?></p> |
|
736 |
<?php if ( isset( $_GET['use-location'] ) ) : ?> |
|
737 |
<input type="hidden" name="use-location" value="<?php echo esc_attr( $_GET['use-location'] ); ?>" /> |
|
738 |
<?php endif; ?> |
|
739 |
<?php endif; ?> |
|
740 |
<div class="menu-settings" <?php if ( $one_theme_location_no_menus ) { ?>style="display: none;"<?php } ?>> |
|
741 |
<h3><?php _e( 'Menu Settings' ); ?></h3> |
|
742 |
<?php |
|
743 |
if ( ! isset( $auto_add ) ) { |
|
744 |
$auto_add = get_option( 'nav_menu_options' ); |
|
745 |
if ( ! isset( $auto_add['auto_add'] ) ) |
|
746 |
$auto_add = false; |
|
747 |
elseif ( false !== array_search( $nav_menu_selected_id, $auto_add['auto_add'] ) ) |
|
748 |
$auto_add = true; |
|
749 |
else |
|
750 |
$auto_add = false; |
|
751 |
} ?> |
|
752 |
|
|
753 |
<dl class="auto-add-pages"> |
|
754 |
<dt class="howto"><?php _e( 'Auto add pages' ); ?></dt> |
|
755 |
<dd class="checkbox-input"><input type="checkbox"<?php checked( $auto_add ); ?> name="auto-add-pages" id="auto-add-pages" value="1" /> <label for="auto-add-pages"><?php printf( __('Automatically add new top-level pages to this menu' ), esc_url( admin_url( 'edit.php?post_type=page' ) ) ); ?></label></dd> |
|
756 |
</dl> |
|
757 |
|
|
758 |
<?php if ( current_theme_supports( 'menus' ) ) : ?> |
|
759 |
|
|
760 |
<dl class="menu-theme-locations"> |
|
761 |
<dt class="howto"><?php _e( 'Theme locations' ); ?></dt> |
|
762 |
<?php foreach ( $locations as $location => $description ) : ?> |
|
763 |
<dd class="checkbox-input"> |
|
764 |
<input type="checkbox"<?php checked( isset( $menu_locations[ $location ] ) && $menu_locations[ $location ] == $nav_menu_selected_id ); ?> name="menu-locations[<?php echo esc_attr( $location ); ?>]" id="locations-<?php echo esc_attr( $location ); ?>" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" /> <label for="locations-<?php echo esc_attr( $location ); ?>"><?php echo $description; ?></label> |
|
765 |
<?php if ( ! empty( $menu_locations[ $location ] ) && $menu_locations[ $location ] != $nav_menu_selected_id ) : ?> |
|
766 |
<span class="theme-location-set"> <?php printf( __( "(Currently set to: %s)" ), wp_get_nav_menu_object( $menu_locations[ $location ] )->name ); ?> </span> |
|
767 |
<?php endif; ?> |
|
768 |
</dd> |
|
769 |
<?php endforeach; ?> |
|
770 |
</dl> |
|
771 |
|
|
772 |
<?php endif; ?> |
|
773 |
|
|
774 |
</div> |
|
775 |
</div><!-- /#post-body-content --> |
|
776 |
</div><!-- /#post-body --> |
|
777 |
<div id="nav-menu-footer"> |
|
778 |
<div class="major-publishing-actions"> |
|
779 |
<?php if ( 0 != $menu_count && ! $add_new_screen ) : ?> |
|
780 |
<span class="delete-action"> |
|
781 |
<a class="submitdelete deletion menu-delete" href="<?php echo esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'delete', 'menu' => $nav_menu_selected_id, admin_url() ) ), 'delete-nav_menu-' . $nav_menu_selected_id) ); ?>"><?php _e('Delete Menu'); ?></a> |
|
782 |
</span><!-- END .delete-action --> |
|
783 |
<?php endif; ?> |
|
784 |
<div class="publishing-action"> |
5
|
785 |
<?php submit_button( empty( $nav_menu_selected_id ) ? __( 'Create Menu' ) : __( 'Save Menu' ), 'button-primary menu-save', 'save_menu', false, array( 'id' => 'save_menu_footer' ) ); ?> |
0
|
786 |
</div><!-- END .publishing-action --> |
|
787 |
</div><!-- END .major-publishing-actions --> |
|
788 |
</div><!-- /#nav-menu-footer --> |
|
789 |
</div><!-- /.menu-edit --> |
|
790 |
</form><!-- /#update-nav-menu --> |
|
791 |
</div><!-- /#menu-management --> |
|
792 |
</div><!-- /#menu-management-liquid --> |
|
793 |
</div><!-- /#nav-menus-frame --> |
|
794 |
<?php endif; ?> |
|
795 |
</div><!-- /.wrap--> |
|
796 |
<?php include( ABSPATH . 'wp-admin/admin-footer.php' ); ?> |