56 _wp_expand_nav_menu_post_data(); |
58 _wp_expand_nav_menu_post_data(); |
57 |
59 |
58 switch ( $action ) { |
60 switch ( $action ) { |
59 case 'add-menu-item': |
61 case 'add-menu-item': |
60 check_admin_referer( 'add-menu_item', 'menu-settings-column-nonce' ); |
62 check_admin_referer( 'add-menu_item', 'menu-settings-column-nonce' ); |
61 if ( isset( $_REQUEST['nav-menu-locations'] ) ) |
63 if ( isset( $_REQUEST['nav-menu-locations'] ) ) { |
62 set_theme_mod( 'nav_menu_locations', array_map( 'absint', $_REQUEST['menu-locations'] ) ); |
64 set_theme_mod( 'nav_menu_locations', array_map( 'absint', $_REQUEST['menu-locations'] ) ); |
63 elseif ( isset( $_REQUEST['menu-item'] ) ) |
65 } elseif ( isset( $_REQUEST['menu-item'] ) ) { |
64 wp_save_nav_menu_items( $nav_menu_selected_id, $_REQUEST['menu-item'] ); |
66 wp_save_nav_menu_items( $nav_menu_selected_id, $_REQUEST['menu-item'] ); |
|
67 } |
65 break; |
68 break; |
66 case 'move-down-menu-item' : |
69 case 'move-down-menu-item': |
67 |
|
68 // Moving down a menu item is the same as moving up the next in order. |
70 // Moving down a menu item is the same as moving up the next in order. |
69 check_admin_referer( 'move-menu_item' ); |
71 check_admin_referer( 'move-menu_item' ); |
70 $menu_item_id = isset( $_REQUEST['menu-item'] ) ? (int) $_REQUEST['menu-item'] : 0; |
72 $menu_item_id = isset( $_REQUEST['menu-item'] ) ? (int) $_REQUEST['menu-item'] : 0; |
71 if ( is_nav_menu_item( $menu_item_id ) ) { |
73 if ( is_nav_menu_item( $menu_item_id ) ) { |
72 $menus = isset( $_REQUEST['menu'] ) ? array( (int) $_REQUEST['menu'] ) : wp_get_object_terms( $menu_item_id, 'nav_menu', array( 'fields' => 'ids' ) ); |
74 $menus = isset( $_REQUEST['menu'] ) ? array( (int) $_REQUEST['menu'] ) : wp_get_object_terms( $menu_item_id, 'nav_menu', array( 'fields' => 'ids' ) ); |
73 if ( ! is_wp_error( $menus ) && ! empty( $menus[0] ) ) { |
75 if ( ! is_wp_error( $menus ) && ! empty( $menus[0] ) ) { |
74 $menu_id = (int) $menus[0]; |
76 $menu_id = (int) $menus[0]; |
75 $ordered_menu_items = wp_get_nav_menu_items( $menu_id ); |
77 $ordered_menu_items = wp_get_nav_menu_items( $menu_id ); |
76 $menu_item_data = (array) wp_setup_nav_menu_item( get_post( $menu_item_id ) ); |
78 $menu_item_data = (array) wp_setup_nav_menu_item( get_post( $menu_item_id ) ); |
77 |
79 |
78 // Set up the data we need in one pass through the array of menu items. |
80 // Set up the data we need in one pass through the array of menu items. |
79 $dbids_to_orders = array(); |
81 $dbids_to_orders = array(); |
80 $orders_to_dbids = array(); |
82 $orders_to_dbids = array(); |
81 foreach ( (array) $ordered_menu_items as $ordered_menu_item_object ) { |
83 foreach ( (array) $ordered_menu_items as $ordered_menu_item_object ) { |
82 if ( isset( $ordered_menu_item_object->ID ) ) { |
84 if ( isset( $ordered_menu_item_object->ID ) ) { |
83 if ( isset( $ordered_menu_item_object->menu_order ) ) { |
85 if ( isset( $ordered_menu_item_object->menu_order ) ) { |
84 $dbids_to_orders[$ordered_menu_item_object->ID] = $ordered_menu_item_object->menu_order; |
86 $dbids_to_orders[ $ordered_menu_item_object->ID ] = $ordered_menu_item_object->menu_order; |
85 $orders_to_dbids[$ordered_menu_item_object->menu_order] = $ordered_menu_item_object->ID; |
87 $orders_to_dbids[ $ordered_menu_item_object->menu_order ] = $ordered_menu_item_object->ID; |
86 } |
88 } |
87 } |
89 } |
88 } |
90 } |
89 |
91 |
90 // Get next in order. |
92 // Get next in order. |
91 if ( |
93 if ( |
92 isset( $orders_to_dbids[$dbids_to_orders[$menu_item_id] + 1] ) |
94 isset( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] + 1 ] ) |
93 ) { |
95 ) { |
94 $next_item_id = $orders_to_dbids[$dbids_to_orders[$menu_item_id] + 1]; |
96 $next_item_id = $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] + 1 ]; |
95 $next_item_data = (array) wp_setup_nav_menu_item( get_post( $next_item_id ) ); |
97 $next_item_data = (array) wp_setup_nav_menu_item( get_post( $next_item_id ) ); |
96 |
98 |
97 // If not siblings of same parent, bubble menu item up but keep order. |
99 // If not siblings of same parent, bubble menu item up but keep order. |
98 if ( |
100 if ( |
99 ! empty( $menu_item_data['menu_item_parent'] ) && |
101 ! empty( $menu_item_data['menu_item_parent'] ) && |
106 $parent_db_id = in_array( $menu_item_data['menu_item_parent'], $orders_to_dbids ) ? (int) $menu_item_data['menu_item_parent'] : 0; |
108 $parent_db_id = in_array( $menu_item_data['menu_item_parent'], $orders_to_dbids ) ? (int) $menu_item_data['menu_item_parent'] : 0; |
107 |
109 |
108 $parent_object = wp_setup_nav_menu_item( get_post( $parent_db_id ) ); |
110 $parent_object = wp_setup_nav_menu_item( get_post( $parent_db_id ) ); |
109 |
111 |
110 if ( ! is_wp_error( $parent_object ) ) { |
112 if ( ! is_wp_error( $parent_object ) ) { |
111 $parent_data = (array) $parent_object; |
113 $parent_data = (array) $parent_object; |
112 $menu_item_data['menu_item_parent'] = $parent_data['menu_item_parent']; |
114 $menu_item_data['menu_item_parent'] = $parent_data['menu_item_parent']; |
113 update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); |
115 update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); |
114 |
116 |
115 } |
117 } |
116 |
118 |
117 // Make menu item a child of its next sibling. |
119 // Make menu item a child of its next sibling. |
118 } else { |
120 } else { |
119 $next_item_data['menu_order'] = $next_item_data['menu_order'] - 1; |
121 $next_item_data['menu_order'] = $next_item_data['menu_order'] - 1; |
120 $menu_item_data['menu_order'] = $menu_item_data['menu_order'] + 1; |
122 $menu_item_data['menu_order'] = $menu_item_data['menu_order'] + 1; |
121 |
123 |
122 $menu_item_data['menu_item_parent'] = $next_item_data['ID']; |
124 $menu_item_data['menu_item_parent'] = $next_item_data['ID']; |
123 update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); |
125 update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); |
124 |
126 |
125 wp_update_post($menu_item_data); |
127 wp_update_post( $menu_item_data ); |
126 wp_update_post($next_item_data); |
128 wp_update_post( $next_item_data ); |
127 } |
129 } |
128 |
130 |
129 // The item is last but still has a parent, so bubble up. |
131 // The item is last but still has a parent, so bubble up. |
130 } elseif ( |
132 } elseif ( |
131 ! empty( $menu_item_data['menu_item_parent'] ) && |
133 ! empty( $menu_item_data['menu_item_parent'] ) && |
132 in_array( $menu_item_data['menu_item_parent'], $orders_to_dbids ) |
134 in_array( $menu_item_data['menu_item_parent'], $orders_to_dbids ) |
133 ) { |
135 ) { |
134 $menu_item_data['menu_item_parent'] = (int) get_post_meta( $menu_item_data['menu_item_parent'], '_menu_item_menu_item_parent', true); |
136 $menu_item_data['menu_item_parent'] = (int) get_post_meta( $menu_item_data['menu_item_parent'], '_menu_item_menu_item_parent', true ); |
135 update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); |
137 update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); |
136 } |
138 } |
137 } |
139 } |
138 } |
140 } |
139 |
141 |
140 break; |
142 break; |
141 case 'move-up-menu-item' : |
143 case 'move-up-menu-item': |
142 check_admin_referer( 'move-menu_item' ); |
144 check_admin_referer( 'move-menu_item' ); |
143 $menu_item_id = isset( $_REQUEST['menu-item'] ) ? (int) $_REQUEST['menu-item'] : 0; |
145 $menu_item_id = isset( $_REQUEST['menu-item'] ) ? (int) $_REQUEST['menu-item'] : 0; |
144 if ( is_nav_menu_item( $menu_item_id ) ) { |
146 if ( is_nav_menu_item( $menu_item_id ) ) { |
145 $menus = isset( $_REQUEST['menu'] ) ? array( (int) $_REQUEST['menu'] ) : wp_get_object_terms( $menu_item_id, 'nav_menu', array( 'fields' => 'ids' ) ); |
147 $menus = isset( $_REQUEST['menu'] ) ? array( (int) $_REQUEST['menu'] ) : wp_get_object_terms( $menu_item_id, 'nav_menu', array( 'fields' => 'ids' ) ); |
146 if ( ! is_wp_error( $menus ) && ! empty( $menus[0] ) ) { |
148 if ( ! is_wp_error( $menus ) && ! empty( $menus[0] ) ) { |
147 $menu_id = (int) $menus[0]; |
149 $menu_id = (int) $menus[0]; |
148 $ordered_menu_items = wp_get_nav_menu_items( $menu_id ); |
150 $ordered_menu_items = wp_get_nav_menu_items( $menu_id ); |
149 $menu_item_data = (array) wp_setup_nav_menu_item( get_post( $menu_item_id ) ); |
151 $menu_item_data = (array) wp_setup_nav_menu_item( get_post( $menu_item_id ) ); |
150 |
152 |
151 // Set up the data we need in one pass through the array of menu items. |
153 // Set up the data we need in one pass through the array of menu items. |
152 $dbids_to_orders = array(); |
154 $dbids_to_orders = array(); |
153 $orders_to_dbids = array(); |
155 $orders_to_dbids = array(); |
154 foreach ( (array) $ordered_menu_items as $ordered_menu_item_object ) { |
156 foreach ( (array) $ordered_menu_items as $ordered_menu_item_object ) { |
155 if ( isset( $ordered_menu_item_object->ID ) ) { |
157 if ( isset( $ordered_menu_item_object->ID ) ) { |
156 if ( isset( $ordered_menu_item_object->menu_order ) ) { |
158 if ( isset( $ordered_menu_item_object->menu_order ) ) { |
157 $dbids_to_orders[$ordered_menu_item_object->ID] = $ordered_menu_item_object->menu_order; |
159 $dbids_to_orders[ $ordered_menu_item_object->ID ] = $ordered_menu_item_object->menu_order; |
158 $orders_to_dbids[$ordered_menu_item_object->menu_order] = $ordered_menu_item_object->ID; |
160 $orders_to_dbids[ $ordered_menu_item_object->menu_order ] = $ordered_menu_item_object->ID; |
159 } |
161 } |
160 } |
162 } |
161 } |
163 } |
162 |
164 |
163 // If this menu item is not first. |
165 // If this menu item is not first. |
164 if ( ! empty( $dbids_to_orders[$menu_item_id] ) && ! empty( $orders_to_dbids[$dbids_to_orders[$menu_item_id] - 1] ) ) { |
166 if ( ! empty( $dbids_to_orders[ $menu_item_id ] ) && ! empty( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) ) { |
165 |
167 |
166 // If this menu item is a child of the previous. |
168 // If this menu item is a child of the previous. |
167 if ( |
169 if ( |
168 ! empty( $menu_item_data['menu_item_parent'] ) && |
170 ! empty( $menu_item_data['menu_item_parent'] ) && |
169 in_array( $menu_item_data['menu_item_parent'], array_keys( $dbids_to_orders ) ) && |
171 in_array( $menu_item_data['menu_item_parent'], array_keys( $dbids_to_orders ) ) && |
170 isset( $orders_to_dbids[$dbids_to_orders[$menu_item_id] - 1] ) && |
172 isset( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) && |
171 ( $menu_item_data['menu_item_parent'] == $orders_to_dbids[$dbids_to_orders[$menu_item_id] - 1] ) |
173 ( $menu_item_data['menu_item_parent'] == $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) |
172 ) { |
174 ) { |
173 $parent_db_id = in_array( $menu_item_data['menu_item_parent'], $orders_to_dbids ) ? (int) $menu_item_data['menu_item_parent'] : 0; |
175 $parent_db_id = in_array( $menu_item_data['menu_item_parent'], $orders_to_dbids ) ? (int) $menu_item_data['menu_item_parent'] : 0; |
174 $parent_object = wp_setup_nav_menu_item( get_post( $parent_db_id ) ); |
176 $parent_object = wp_setup_nav_menu_item( get_post( $parent_db_id ) ); |
175 |
177 |
176 if ( ! is_wp_error( $parent_object ) ) { |
178 if ( ! is_wp_error( $parent_object ) ) { |
177 $parent_data = (array) $parent_object; |
179 $parent_data = (array) $parent_object; |
178 |
180 |
179 /* |
181 /* |
180 * If there is something before the parent and parent a child of it, |
182 * If there is something before the parent and parent a child of it, |
181 * make menu item a child also of it. |
183 * make menu item a child also of it. |
182 */ |
184 */ |
183 if ( |
185 if ( |
184 ! empty( $dbids_to_orders[$parent_db_id] ) && |
186 ! empty( $dbids_to_orders[ $parent_db_id ] ) && |
185 ! empty( $orders_to_dbids[$dbids_to_orders[$parent_db_id] - 1] ) && |
187 ! empty( $orders_to_dbids[ $dbids_to_orders[ $parent_db_id ] - 1 ] ) && |
186 ! empty( $parent_data['menu_item_parent'] ) |
188 ! empty( $parent_data['menu_item_parent'] ) |
187 ) { |
189 ) { |
188 $menu_item_data['menu_item_parent'] = $parent_data['menu_item_parent']; |
190 $menu_item_data['menu_item_parent'] = $parent_data['menu_item_parent']; |
189 |
191 |
190 /* |
192 /* |
191 * Else if there is something before parent and parent not a child of it, |
193 * Else if there is something before parent and parent not a child of it, |
192 * make menu item a child of that something's parent |
194 * make menu item a child of that something's parent |
193 */ |
195 */ |
194 } elseif ( |
196 } elseif ( |
195 ! empty( $dbids_to_orders[$parent_db_id] ) && |
197 ! empty( $dbids_to_orders[ $parent_db_id ] ) && |
196 ! empty( $orders_to_dbids[$dbids_to_orders[$parent_db_id] - 1] ) |
198 ! empty( $orders_to_dbids[ $dbids_to_orders[ $parent_db_id ] - 1 ] ) |
197 ) { |
199 ) { |
198 $_possible_parent_id = (int) get_post_meta( $orders_to_dbids[$dbids_to_orders[$parent_db_id] - 1], '_menu_item_menu_item_parent', true); |
200 $_possible_parent_id = (int) get_post_meta( $orders_to_dbids[ $dbids_to_orders[ $parent_db_id ] - 1 ], '_menu_item_menu_item_parent', true ); |
199 if ( in_array( $_possible_parent_id, array_keys( $dbids_to_orders ) ) ) |
201 if ( in_array( $_possible_parent_id, array_keys( $dbids_to_orders ) ) ) { |
200 $menu_item_data['menu_item_parent'] = $_possible_parent_id; |
202 $menu_item_data['menu_item_parent'] = $_possible_parent_id; |
201 else |
203 } else { |
202 $menu_item_data['menu_item_parent'] = 0; |
204 $menu_item_data['menu_item_parent'] = 0; |
203 |
205 } |
204 // Else there isn't something before the parent. |
206 |
|
207 // Else there isn't something before the parent. |
205 } else { |
208 } else { |
206 $menu_item_data['menu_item_parent'] = 0; |
209 $menu_item_data['menu_item_parent'] = 0; |
207 } |
210 } |
208 |
211 |
209 // Set former parent's [menu_order] to that of menu-item's. |
212 // Set former parent's [menu_order] to that of menu-item's. |
212 // Set menu-item's [menu_order] to that of former parent. |
215 // Set menu-item's [menu_order] to that of former parent. |
213 $menu_item_data['menu_order'] = $menu_item_data['menu_order'] - 1; |
216 $menu_item_data['menu_order'] = $menu_item_data['menu_order'] - 1; |
214 |
217 |
215 // Save changes. |
218 // Save changes. |
216 update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); |
219 update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); |
217 wp_update_post($menu_item_data); |
220 wp_update_post( $menu_item_data ); |
218 wp_update_post($parent_data); |
221 wp_update_post( $parent_data ); |
219 } |
222 } |
220 |
223 |
221 // Else this menu item is not a child of the previous. |
224 // Else this menu item is not a child of the previous. |
222 } elseif ( |
225 } elseif ( |
223 empty( $menu_item_data['menu_order'] ) || |
226 empty( $menu_item_data['menu_order'] ) || |
224 empty( $menu_item_data['menu_item_parent'] ) || |
227 empty( $menu_item_data['menu_item_parent'] ) || |
225 ! in_array( $menu_item_data['menu_item_parent'], array_keys( $dbids_to_orders ) ) || |
228 ! in_array( $menu_item_data['menu_item_parent'], array_keys( $dbids_to_orders ) ) || |
226 empty( $orders_to_dbids[$dbids_to_orders[$menu_item_id] - 1] ) || |
229 empty( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) || |
227 $orders_to_dbids[$dbids_to_orders[$menu_item_id] - 1] != $menu_item_data['menu_item_parent'] |
230 $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] != $menu_item_data['menu_item_parent'] |
228 ) { |
231 ) { |
229 // Just make it a child of the previous; keep the order. |
232 // Just make it a child of the previous; keep the order. |
230 $menu_item_data['menu_item_parent'] = (int) $orders_to_dbids[$dbids_to_orders[$menu_item_id] - 1]; |
233 $menu_item_data['menu_item_parent'] = (int) $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ]; |
231 update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); |
234 update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); |
232 wp_update_post($menu_item_data); |
235 wp_update_post( $menu_item_data ); |
233 } |
236 } |
234 } |
237 } |
235 } |
238 } |
236 } |
239 } |
237 break; |
240 break; |
253 // Reset the selected menu. |
257 // Reset the selected menu. |
254 $nav_menu_selected_id = 0; |
258 $nav_menu_selected_id = 0; |
255 unset( $_REQUEST['menu'] ); |
259 unset( $_REQUEST['menu'] ); |
256 } |
260 } |
257 |
261 |
258 if ( ! isset( $deletion ) ) |
262 if ( ! isset( $deletion ) ) { |
259 break; |
263 break; |
260 |
264 } |
261 if ( is_wp_error( $deletion ) ) |
265 |
|
266 if ( is_wp_error( $deletion ) ) { |
262 $messages[] = '<div id="message" class="error notice is-dismissible"><p>' . $deletion->get_error_message() . '</p></div>'; |
267 $messages[] = '<div id="message" class="error notice is-dismissible"><p>' . $deletion->get_error_message() . '</p></div>'; |
263 else |
268 } else { |
264 $messages[] = '<div id="message" class="updated notice is-dismissible"><p>' . __( 'The menu has been successfully deleted.' ) . '</p></div>'; |
269 $messages[] = '<div id="message" class="updated notice is-dismissible"><p>' . __( 'The menu has been successfully deleted.' ) . '</p></div>'; |
|
270 } |
265 break; |
271 break; |
266 |
272 |
267 case 'delete_menus': |
273 case 'delete_menus': |
268 check_admin_referer( 'nav_menus_bulk_actions' ); |
274 check_admin_referer( 'nav_menus_bulk_actions' ); |
269 foreach ( $_REQUEST['delete_menus'] as $menu_id_to_delete ) { |
275 foreach ( $_REQUEST['delete_menus'] as $menu_id_to_delete ) { |
270 if ( ! is_nav_menu( $menu_id_to_delete ) ) |
276 if ( ! is_nav_menu( $menu_id_to_delete ) ) { |
271 continue; |
277 continue; |
|
278 } |
272 |
279 |
273 $deletion = wp_delete_nav_menu( $menu_id_to_delete ); |
280 $deletion = wp_delete_nav_menu( $menu_id_to_delete ); |
274 if ( is_wp_error( $deletion ) ) { |
281 if ( is_wp_error( $deletion ) ) { |
275 $messages[] = '<div id="message" class="error notice is-dismissible"><p>' . $deletion->get_error_message() . '</p></div>'; |
282 $messages[] = '<div id="message" class="error notice is-dismissible"><p>' . $deletion->get_error_message() . '</p></div>'; |
276 $deletion_error = true; |
283 $deletion_error = true; |
277 } |
284 } |
278 } |
285 } |
279 |
286 |
280 if ( empty( $deletion_error ) ) |
287 if ( empty( $deletion_error ) ) { |
281 $messages[] = '<div id="message" class="updated notice is-dismissible"><p>' . __( 'Selected menus have been successfully deleted.' ) . '</p></div>'; |
288 $messages[] = '<div id="message" class="updated notice is-dismissible"><p>' . __( 'Selected menus have been successfully deleted.' ) . '</p></div>'; |
|
289 } |
282 break; |
290 break; |
283 |
291 |
284 case 'update': |
292 case 'update': |
285 check_admin_referer( 'update-nav_menu', 'update-nav-menu-nonce' ); |
293 check_admin_referer( 'update-nav_menu', 'update-nav-menu-nonce' ); |
286 |
294 |
287 // Remove menu locations that have been unchecked. |
295 // Remove menu locations that have been unchecked. |
288 foreach ( $locations as $location => $description ) { |
296 foreach ( $locations as $location => $description ) { |
289 if ( ( empty( $_POST['menu-locations'] ) || empty( $_POST['menu-locations'][ $location ] ) ) && isset( $menu_locations[ $location ] ) && $menu_locations[ $location ] == $nav_menu_selected_id ) |
297 if ( ( empty( $_POST['menu-locations'] ) || empty( $_POST['menu-locations'][ $location ] ) ) && isset( $menu_locations[ $location ] ) && $menu_locations[ $location ] == $nav_menu_selected_id ) { |
290 unset( $menu_locations[ $location ] ); |
298 unset( $menu_locations[ $location ] ); |
|
299 } |
291 } |
300 } |
292 |
301 |
293 // Merge new and existing menu locations if any new ones are set. |
302 // Merge new and existing menu locations if any new ones are set. |
294 if ( isset( $_POST['menu-locations'] ) ) { |
303 if ( isset( $_POST['menu-locations'] ) ) { |
295 $new_menu_locations = array_map( 'absint', $_POST['menu-locations'] ); |
304 $new_menu_locations = array_map( 'absint', $_POST['menu-locations'] ); |
296 $menu_locations = array_merge( $menu_locations, $new_menu_locations ); |
305 $menu_locations = array_merge( $menu_locations, $new_menu_locations ); |
297 } |
306 } |
298 |
307 |
299 // Set menu locations. |
308 // Set menu locations. |
300 set_theme_mod( 'nav_menu_locations', $menu_locations ); |
309 set_theme_mod( 'nav_menu_locations', $menu_locations ); |
301 |
310 |
302 // Add Menu. |
311 // Add Menu. |
303 if ( 0 == $nav_menu_selected_id ) { |
312 if ( 0 == $nav_menu_selected_id ) { |
304 $new_menu_title = trim( esc_html( $_POST['menu-name'] ) ); |
313 $new_menu_title = trim( esc_html( $_POST['menu-name'] ) ); |
305 |
314 |
306 if ( $new_menu_title ) { |
315 if ( $new_menu_title ) { |
307 $_nav_menu_selected_id = wp_update_nav_menu_object( 0, array('menu-name' => $new_menu_title) ); |
316 $_nav_menu_selected_id = wp_update_nav_menu_object( 0, array( 'menu-name' => $new_menu_title ) ); |
308 |
317 |
309 if ( is_wp_error( $_nav_menu_selected_id ) ) { |
318 if ( is_wp_error( $_nav_menu_selected_id ) ) { |
310 $messages[] = '<div id="message" class="error notice is-dismissible"><p>' . $_nav_menu_selected_id->get_error_message() . '</p></div>'; |
319 $messages[] = '<div id="message" class="error notice is-dismissible"><p>' . $_nav_menu_selected_id->get_error_message() . '</p></div>'; |
311 } else { |
320 } else { |
312 $_menu_object = wp_get_nav_menu_object( $_nav_menu_selected_id ); |
321 $_menu_object = wp_get_nav_menu_object( $_nav_menu_selected_id ); |
313 $nav_menu_selected_id = $_nav_menu_selected_id; |
322 $nav_menu_selected_id = $_nav_menu_selected_id; |
314 $nav_menu_selected_title = $_menu_object->name; |
323 $nav_menu_selected_title = $_menu_object->name; |
315 if ( isset( $_REQUEST['menu-item'] ) ) |
324 if ( isset( $_REQUEST['menu-item'] ) ) { |
316 wp_save_nav_menu_items( $nav_menu_selected_id, absint( $_REQUEST['menu-item'] ) ); |
325 wp_save_nav_menu_items( $nav_menu_selected_id, absint( $_REQUEST['menu-item'] ) ); |
|
326 } |
317 if ( isset( $_REQUEST['zero-menu-state'] ) ) { |
327 if ( isset( $_REQUEST['zero-menu-state'] ) ) { |
318 // If there are menu items, add them |
328 // If there are menu items, add them |
319 wp_nav_menu_update_menu_items( $nav_menu_selected_id, $nav_menu_selected_title ); |
329 wp_nav_menu_update_menu_items( $nav_menu_selected_id, $nav_menu_selected_title ); |
320 // Auto-save nav_menu_locations |
330 // Auto-save nav_menu_locations |
321 $locations = get_nav_menu_locations(); |
331 $locations = get_nav_menu_locations(); |
407 |
418 |
408 /* |
419 /* |
409 * If we have one theme location, and zero menus, we take them right |
420 * If we have one theme location, and zero menus, we take them right |
410 * into editing their first menu. |
421 * into editing their first menu. |
411 */ |
422 */ |
412 $page_count = wp_count_posts( 'page' ); |
423 $page_count = wp_count_posts( 'page' ); |
413 $one_theme_location_no_menus = ( 1 == count( get_registered_nav_menus() ) && ! $add_new_screen && empty( $nav_menus ) && ! empty( $page_count->publish ) ) ? true : false; |
424 $one_theme_location_no_menus = ( 1 == count( get_registered_nav_menus() ) && ! $add_new_screen && empty( $nav_menus ) && ! empty( $page_count->publish ) ) ? true : false; |
414 |
425 |
415 $nav_menus_l10n = array( |
426 $nav_menus_l10n = array( |
416 'oneThemeLocationNoMenus' => $one_theme_location_no_menus, |
427 'oneThemeLocationNoMenus' => $one_theme_location_no_menus, |
417 'moveUp' => __( 'Move up one' ), |
428 'moveUp' => __( 'Move up one' ), |
418 'moveDown' => __( 'Move down one' ), |
429 'moveDown' => __( 'Move down one' ), |
419 'moveToTop' => __( 'Move to the top' ), |
430 'moveToTop' => __( 'Move to the top' ), |
420 /* translators: %s: previous item name */ |
431 /* translators: %s: previous item name */ |
421 'moveUnder' => __( 'Move under %s' ), |
432 'moveUnder' => __( 'Move under %s' ), |
422 /* translators: %s: previous item name */ |
433 /* translators: %s: previous item name */ |
423 'moveOutFrom' => __( 'Move out from under %s' ), |
434 'moveOutFrom' => __( 'Move out from under %s' ), |
424 /* translators: %s: previous item name */ |
435 /* translators: %s: previous item name */ |
425 'under' => __( 'Under %s' ), |
436 'under' => __( 'Under %s' ), |
426 /* translators: %s: previous item name */ |
437 /* translators: %s: previous item name */ |
427 'outFrom' => __( 'Out from under %s' ), |
438 'outFrom' => __( 'Out from under %s' ), |
428 /* translators: 1: item name, 2: item position, 3: total number of items */ |
439 /* translators: 1: item name, 2: item position, 3: total number of items */ |
429 'menuFocus' => __( '%1$s. Menu item %2$d of %3$d.' ), |
440 'menuFocus' => __( '%1$s. Menu item %2$d of %3$d.' ), |
430 /* translators: 1: item name, 2: item position, 3: parent item name */ |
441 /* translators: 1: item name, 2: item position, 3: parent item name */ |
431 'subMenuFocus' => __( '%1$s. Sub item number %2$d under %3$s.' ), |
442 'subMenuFocus' => __( '%1$s. Sub item number %2$d under %3$s.' ), |
432 ); |
443 ); |
433 wp_localize_script( 'nav-menu', 'menus', $nav_menus_l10n ); |
444 wp_localize_script( 'nav-menu', 'menus', $nav_menus_l10n ); |
434 |
445 |
435 /* |
446 /* |
436 * Redirect to add screen if there are no menus and this users has either zero, |
447 * Redirect to add screen if there are no menus and this users has either zero, |
437 * or more than 1 theme locations. |
448 * or more than 1 theme locations. |
438 */ |
449 */ |
439 if ( 0 == $menu_count && ! $add_new_screen && ! $one_theme_location_no_menus ) |
450 if ( 0 == $menu_count && ! $add_new_screen && ! $one_theme_location_no_menus ) { |
440 wp_redirect( admin_url( 'nav-menus.php?action=edit&menu=0' ) ); |
451 wp_redirect( admin_url( 'nav-menus.php?action=edit&menu=0' ) ); |
|
452 } |
441 |
453 |
442 // Get recently edited nav menu. |
454 // Get recently edited nav menu. |
443 $recently_edited = absint( get_user_option( 'nav_menu_recently_edited' ) ); |
455 $recently_edited = absint( get_user_option( 'nav_menu_recently_edited' ) ); |
444 if ( empty( $recently_edited ) && is_nav_menu( $nav_menu_selected_id ) ) |
456 if ( empty( $recently_edited ) && is_nav_menu( $nav_menu_selected_id ) ) { |
445 $recently_edited = $nav_menu_selected_id; |
457 $recently_edited = $nav_menu_selected_id; |
|
458 } |
446 |
459 |
447 // Use $recently_edited if none are selected. |
460 // Use $recently_edited if none are selected. |
448 if ( empty( $nav_menu_selected_id ) && ! isset( $_GET['menu'] ) && is_nav_menu( $recently_edited ) ) |
461 if ( empty( $nav_menu_selected_id ) && ! isset( $_GET['menu'] ) && is_nav_menu( $recently_edited ) ) { |
449 $nav_menu_selected_id = $recently_edited; |
462 $nav_menu_selected_id = $recently_edited; |
|
463 } |
450 |
464 |
451 // On deletion of menu, if another menu exists, show it. |
465 // On deletion of menu, if another menu exists, show it. |
452 if ( ! $add_new_screen && 0 < $menu_count && isset( $_GET['action'] ) && 'delete' == $_GET['action'] ) |
466 if ( ! $add_new_screen && 0 < $menu_count && isset( $_GET['action'] ) && 'delete' == $_GET['action'] ) { |
453 $nav_menu_selected_id = $nav_menus[0]->term_id; |
467 $nav_menu_selected_id = $nav_menus[0]->term_id; |
|
468 } |
454 |
469 |
455 // Set $nav_menu_selected_id to 0 if no menus. |
470 // Set $nav_menu_selected_id to 0 if no menus. |
456 if ( $one_theme_location_no_menus ) { |
471 if ( $one_theme_location_no_menus ) { |
457 $nav_menu_selected_id = 0; |
472 $nav_menu_selected_id = 0; |
458 } elseif ( empty( $nav_menu_selected_id ) && ! empty( $nav_menus ) && ! $add_new_screen ) { |
473 } elseif ( empty( $nav_menu_selected_id ) && ! empty( $nav_menus ) && ! $add_new_screen ) { |
459 // if we have no selection yet, and we have menus, set to the first one in the list. |
474 // if we have no selection yet, and we have menus, set to the first one in the list. |
460 $nav_menu_selected_id = $nav_menus[0]->term_id; |
475 $nav_menu_selected_id = $nav_menus[0]->term_id; |
461 } |
476 } |
462 |
477 |
463 // Update the user's setting. |
478 // Update the user's setting. |
464 if ( $nav_menu_selected_id != $recently_edited && is_nav_menu( $nav_menu_selected_id ) ) |
479 if ( $nav_menu_selected_id != $recently_edited && is_nav_menu( $nav_menu_selected_id ) ) { |
465 update_user_meta( $current_user->ID, 'nav_menu_recently_edited', $nav_menu_selected_id ); |
480 update_user_meta( $current_user->ID, 'nav_menu_recently_edited', $nav_menu_selected_id ); |
|
481 } |
466 |
482 |
467 // If there's a menu, get its name. |
483 // If there's a menu, get its name. |
468 if ( ! $nav_menu_selected_title && is_nav_menu( $nav_menu_selected_id ) ) { |
484 if ( ! $nav_menu_selected_title && is_nav_menu( $nav_menu_selected_id ) ) { |
469 $_menu_object = wp_get_nav_menu_object( $nav_menu_selected_id ); |
485 $_menu_object = wp_get_nav_menu_object( $nav_menu_selected_id ); |
470 $nav_menu_selected_title = ! is_wp_error( $_menu_object ) ? $_menu_object->name : ''; |
486 $nav_menu_selected_title = ! is_wp_error( $_menu_object ) ? $_menu_object->name : ''; |
471 } |
487 } |
472 |
488 |
473 // Generate truncated menu names. |
489 // Generate truncated menu names. |
474 foreach ( (array) $nav_menus as $key => $_nav_menu ) { |
490 foreach ( (array) $nav_menus as $key => $_nav_menu ) { |
475 $nav_menus[$key]->truncated_name = wp_html_excerpt( $_nav_menu->name, 40, '…' ); |
491 $nav_menus[ $key ]->truncated_name = wp_html_excerpt( $_nav_menu->name, 40, '…' ); |
476 } |
492 } |
477 |
493 |
478 // Retrieve menu locations. |
494 // Retrieve menu locations. |
479 if ( current_theme_supports( 'menus' ) ) { |
495 if ( current_theme_supports( 'menus' ) ) { |
480 $locations = get_registered_nav_menus(); |
496 $locations = get_registered_nav_menus(); |
481 $menu_locations = get_nav_menu_locations(); |
497 $menu_locations = get_nav_menu_locations(); |
482 } |
498 } |
483 |
499 |
484 /* |
500 /* |
485 * Ensure the user will be able to scroll horizontally |
501 * Ensure the user will be able to scroll horizontally |
490 global $_wp_nav_menu_max_depth; |
506 global $_wp_nav_menu_max_depth; |
491 $_wp_nav_menu_max_depth = 0; |
507 $_wp_nav_menu_max_depth = 0; |
492 |
508 |
493 // Calling wp_get_nav_menu_to_edit generates $_wp_nav_menu_max_depth. |
509 // Calling wp_get_nav_menu_to_edit generates $_wp_nav_menu_max_depth. |
494 if ( is_nav_menu( $nav_menu_selected_id ) ) { |
510 if ( is_nav_menu( $nav_menu_selected_id ) ) { |
495 $menu_items = wp_get_nav_menu_items( $nav_menu_selected_id, array( 'post_status' => 'any' ) ); |
511 $menu_items = wp_get_nav_menu_items( $nav_menu_selected_id, array( 'post_status' => 'any' ) ); |
496 $edit_markup = wp_get_nav_menu_to_edit( $nav_menu_selected_id ); |
512 $edit_markup = wp_get_nav_menu_to_edit( $nav_menu_selected_id ); |
497 } |
513 } |
498 |
514 |
499 /** |
515 /** |
500 * |
|
501 * @global int $_wp_nav_menu_max_depth |
516 * @global int $_wp_nav_menu_max_depth |
502 * |
517 * |
503 * @param string $classes |
518 * @param string $classes |
504 * @return string |
519 * @return string |
505 */ |
520 */ |
506 function wp_nav_menu_max_depth( $classes ) { |
521 function wp_nav_menu_max_depth( $classes ) { |
507 global $_wp_nav_menu_max_depth; |
522 global $_wp_nav_menu_max_depth; |
508 return "$classes menu-max-depth-$_wp_nav_menu_max_depth"; |
523 return "$classes menu-max-depth-$_wp_nav_menu_max_depth"; |
509 } |
524 } |
510 |
525 |
511 add_filter('admin_body_class', 'wp_nav_menu_max_depth'); |
526 add_filter( 'admin_body_class', 'wp_nav_menu_max_depth' ); |
512 |
527 |
513 wp_nav_menu_setup(); |
528 wp_nav_menu_setup(); |
514 wp_initial_nav_menu_meta_boxes(); |
529 wp_initial_nav_menu_meta_boxes(); |
515 |
530 |
516 if ( ! current_theme_supports( 'menus' ) && ! $num_locations ) |
531 if ( ! current_theme_supports( 'menus' ) && ! $num_locations ) { |
517 $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 “Navigation Menu” widget on the <a href="%s">Widgets</a> screen.' ), admin_url( 'widgets.php' ) ) . '</p></div>'; |
532 $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 “Navigation Menu” widget on the <a href="%s">Widgets</a> screen.' ), admin_url( 'widgets.php' ) ) . '</p></div>'; |
|
533 } |
518 |
534 |
519 if ( ! $locations_screen ) : // Main tab |
535 if ( ! $locations_screen ) : // Main tab |
520 $overview = '<p>' . __( 'This screen is used for managing your navigation menus.' ) . '</p>'; |
536 $overview = '<p>' . __( 'This screen is used for managing your navigation menus.' ) . '</p>'; |
521 /* translators: 1: Widgets admin screen URL, 2 and 3: The name of the default themes */ |
537 /* translators: 1: Widgets admin screen URL, 2 and 3: The name of the default themes */ |
522 $overview .= '<p>' . sprintf( __( 'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the <a href="%1$s">Widgets</a> screen. If your theme does not support the navigation 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 Sixteen', 'Twenty Seventeen' ) . '</p>'; |
538 $overview .= '<p>' . sprintf( __( 'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the <a href="%1$s">Widgets</a> screen. If your theme does not support the navigation 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 Seventeen', 'Twenty Nineteen' ) . '</p>'; |
523 $overview .= '<p>' . __( 'From this screen you can:' ) . '</p>'; |
539 $overview .= '<p>' . __( 'From this screen you can:' ) . '</p>'; |
524 $overview .= '<ul><li>' . __( 'Create, edit, and delete menus' ) . '</li>'; |
540 $overview .= '<ul><li>' . __( 'Create, edit, and delete menus' ) . '</li>'; |
525 $overview .= '<li>' . __( 'Add, organize, and modify individual menu items' ) . '</li></ul>'; |
541 $overview .= '<li>' . __( 'Add, organize, and modify individual menu items' ) . '</li></ul>'; |
526 |
542 |
527 get_current_screen()->add_help_tab( array( |
543 get_current_screen()->add_help_tab( |
528 'id' => 'overview', |
544 array( |
529 'title' => __( 'Overview' ), |
545 'id' => 'overview', |
530 'content' => $overview |
546 'title' => __( 'Overview' ), |
531 ) ); |
547 'content' => $overview, |
|
548 ) |
|
549 ); |
532 |
550 |
533 $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>'; |
551 $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>'; |
534 $menu_management .= '<ul><li>' . __( 'To edit an existing menu, <strong>choose a menu from the drop down and click Select</strong>' ) . '</li>'; |
552 $menu_management .= '<ul><li>' . __( 'To edit an existing menu, <strong>choose a menu from the drop down and click Select</strong>' ) . '</li>'; |
535 $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>'; |
553 $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>'; |
536 $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>'; |
554 $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>'; |
537 |
555 |
538 get_current_screen()->add_help_tab( array( |
556 get_current_screen()->add_help_tab( |
539 'id' => 'menu-management', |
557 array( |
540 'title' => __( 'Menu Management' ), |
558 'id' => 'menu-management', |
541 'content' => $menu_management |
559 'title' => __( 'Menu Management' ), |
542 ) ); |
560 'content' => $menu_management, |
|
561 ) |
|
562 ); |
543 |
563 |
544 $editing_menus = '<p>' . __( 'Each navigation 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>'; |
564 $editing_menus = '<p>' . __( 'Each navigation 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>'; |
545 $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>'; |
565 $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>'; |
546 $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>'; |
566 $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>'; |
547 $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>'; |
567 $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>'; |
548 $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>'; |
568 $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>'; |
549 $editing_menus .= '<li>' . __( 'Delete a menu item by <strong>expanding it and clicking the Remove link</strong>' ) . '</li></ul>'; |
569 $editing_menus .= '<li>' . __( 'Delete a menu item by <strong>expanding it and clicking the Remove link</strong>' ) . '</li></ul>'; |
550 |
570 |
551 get_current_screen()->add_help_tab( array( |
571 get_current_screen()->add_help_tab( |
552 'id' => 'editing-menus', |
572 array( |
553 'title' => __( 'Editing Menus' ), |
573 'id' => 'editing-menus', |
554 'content' => $editing_menus |
574 'title' => __( 'Editing Menus' ), |
555 ) ); |
575 'content' => $editing_menus, |
|
576 ) |
|
577 ); |
556 else : // Locations Tab. |
578 else : // Locations Tab. |
557 $locations_overview = '<p>' . __( 'This screen is used for globally assigning menus to locations defined by your theme.' ) . '</p>'; |
579 $locations_overview = '<p>' . __( 'This screen is used for globally assigning menus to locations defined by your theme.' ) . '</p>'; |
558 $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>'; |
580 $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>'; |
559 $locations_overview .= '<li>' . __( 'To edit a menu currently assigned to a theme location, <strong>click the adjacent ’Edit’ link</strong>' ) . '</li>'; |
581 $locations_overview .= '<li>' . __( 'To edit a menu currently assigned to a theme location, <strong>click the adjacent ’Edit’ link</strong>' ) . '</li>'; |
560 $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>'; |
582 $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>'; |
561 |
583 |
562 get_current_screen()->add_help_tab( array( |
584 get_current_screen()->add_help_tab( |
563 'id' => 'locations-overview', |
585 array( |
564 'title' => __( 'Overview' ), |
586 'id' => 'locations-overview', |
565 'content' => $locations_overview |
587 'title' => __( 'Overview' ), |
566 ) ); |
588 'content' => $locations_overview, |
|
589 ) |
|
590 ); |
567 endif; |
591 endif; |
568 |
592 |
569 get_current_screen()->set_help_sidebar( |
593 get_current_screen()->set_help_sidebar( |
570 '<p><strong>' . __('For more information:') . '</strong></p>' . |
594 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . |
571 '<p>' . __('<a href="https://codex.wordpress.org/Appearance_Menus_Screen">Documentation on Menus</a>') . '</p>' . |
595 '<p>' . __( '<a href="https://codex.wordpress.org/Appearance_Menus_Screen">Documentation on Menus</a>' ) . '</p>' . |
572 '<p>' . __('<a href="https://wordpress.org/support/">Support Forums</a>') . '</p>' |
596 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' |
573 ); |
597 ); |
574 |
598 |
575 // Get the admin header. |
599 // Get the admin header. |
576 require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
600 require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
577 ?> |
601 ?> |
580 <?php |
604 <?php |
581 if ( current_user_can( 'customize' ) ) : |
605 if ( current_user_can( 'customize' ) ) : |
582 $focus = $locations_screen ? array( 'section' => 'menu_locations' ) : array( 'panel' => 'nav_menus' ); |
606 $focus = $locations_screen ? array( 'section' => 'menu_locations' ) : array( 'panel' => 'nav_menus' ); |
583 printf( |
607 printf( |
584 ' <a class="page-title-action hide-if-no-customize" href="%1$s">%2$s</a>', |
608 ' <a class="page-title-action hide-if-no-customize" href="%1$s">%2$s</a>', |
585 esc_url( add_query_arg( array( |
609 esc_url( |
586 array( 'autofocus' => $focus ), |
610 add_query_arg( |
587 'return' => urlencode( remove_query_arg( wp_removable_query_args(), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ), |
611 array( |
588 ), admin_url( 'customize.php' ) ) ), |
612 array( 'autofocus' => $focus ), |
|
613 'return' => urlencode( remove_query_arg( wp_removable_query_args(), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ), |
|
614 ), |
|
615 admin_url( 'customize.php' ) |
|
616 ) |
|
617 ), |
589 __( 'Manage with Live Preview' ) |
618 __( 'Manage with Live Preview' ) |
590 ); |
619 ); |
591 endif; |
620 endif; |
|
621 |
|
622 $nav_tab_active_class = ''; |
|
623 $nav_aria_current = ''; |
|
624 if ( ! isset( $_GET['action'] ) || isset( $_GET['action'] ) && 'locations' != $_GET['action'] ) { |
|
625 $nav_tab_active_class = ' nav-tab-active'; |
|
626 $nav_aria_current = ' aria-current="page"'; |
|
627 } |
592 ?> |
628 ?> |
593 |
629 |
594 <hr class="wp-header-end"> |
630 <hr class="wp-header-end"> |
595 |
631 |
596 <h2 class="nav-tab-wrapper wp-clearfix"> |
632 <nav class="nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> |
597 <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> |
633 <a href="<?php echo admin_url( 'nav-menus.php' ); ?>" class="nav-tab<?php echo $nav_tab_active_class; ?>"<?php echo $nav_aria_current; ?>><?php esc_html_e( 'Edit Menus' ); ?></a> |
598 <?php if ( $num_locations && $menu_count ) : ?> |
|
599 <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> |
|
600 <?php |
634 <?php |
601 endif; |
635 if ( $num_locations && $menu_count ) { |
|
636 $active_tab_class = ''; |
|
637 $aria_current = ''; |
|
638 if ( $locations_screen ) { |
|
639 $active_tab_class = ' nav-tab-active'; |
|
640 $aria_current = ' aria-current="page"'; |
|
641 } |
|
642 ?> |
|
643 <a href="<?php echo esc_url( add_query_arg( array( 'action' => 'locations' ), admin_url( 'nav-menus.php' ) ) ); ?>" class="nav-tab<?php echo $active_tab_class; ?>"<?php echo $aria_current; ?>><?php esc_html_e( 'Manage Locations' ); ?></a> |
|
644 <?php |
|
645 } |
602 ?> |
646 ?> |
603 </h2> |
647 </nav> |
604 <?php |
648 <?php |
605 foreach ( $messages as $message ) : |
649 foreach ( $messages as $message ) : |
606 echo $message . "\n"; |
650 echo $message . "\n"; |
607 endforeach; |
651 endforeach; |
608 ?> |
652 ?> |
609 <?php |
653 <?php |
610 if ( $locations_screen ) : |
654 if ( $locations_screen ) : |
611 if ( 1 == $num_locations ) { |
655 if ( 1 == $num_locations ) { |
612 echo '<p>' . __( 'Your theme supports one menu. Select which menu you would like to use.' ) . '</p>'; |
656 echo '<p>' . __( 'Your theme supports one menu. Select which menu you would like to use.' ) . '</p>'; |
613 } else { |
657 } else { |
614 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>'; |
658 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>'; |
615 } |
659 } |
616 ?> |
660 ?> |
617 <div id="menu-locations-wrap"> |
661 <div id="menu-locations-wrap"> |
618 <form method="post" action="<?php echo esc_url( add_query_arg( array( 'action' => 'locations' ), admin_url( 'nav-menus.php' ) ) ); ?>"> |
662 <form method="post" action="<?php echo esc_url( add_query_arg( array( 'action' => 'locations' ), admin_url( 'nav-menus.php' ) ) ); ?>"> |
619 <table class="widefat fixed" id="menu-locations-table"> |
663 <table class="widefat fixed" id="menu-locations-table"> |
620 <thead> |
664 <thead> |
621 <tr> |
665 <tr> |
628 <tr class="menu-locations-row"> |
672 <tr class="menu-locations-row"> |
629 <td class="menu-location-title"><label for="locations-<?php echo $_location; ?>"><?php echo $_name; ?></label></td> |
673 <td class="menu-location-title"><label for="locations-<?php echo $_location; ?>"><?php echo $_name; ?></label></td> |
630 <td class="menu-location-menus"> |
674 <td class="menu-location-menus"> |
631 <select name="menu-locations[<?php echo $_location; ?>]" id="locations-<?php echo $_location; ?>"> |
675 <select name="menu-locations[<?php echo $_location; ?>]" id="locations-<?php echo $_location; ?>"> |
632 <option value="0"><?php printf( '— %s —', esc_html__( 'Select a Menu' ) ); ?></option> |
676 <option value="0"><?php printf( '— %s —', esc_html__( 'Select a Menu' ) ); ?></option> |
633 <?php foreach ( $nav_menus as $menu ) : ?> |
677 <?php |
634 <?php $selected = isset( $menu_locations[$_location] ) && $menu_locations[$_location] == $menu->term_id; ?> |
678 foreach ( $nav_menus as $menu ) : |
635 <option <?php if ( $selected ) echo 'data-orig="true"'; ?> <?php selected( $selected ); ?> value="<?php echo $menu->term_id; ?>"> |
679 $data_orig = ''; |
|
680 $selected = isset( $menu_locations[ $_location ] ) && $menu_locations[ $_location ] == $menu->term_id; |
|
681 if ( $selected ) { |
|
682 $data_orig = 'data-orig="true"'; |
|
683 } |
|
684 ?> |
|
685 <option <?php echo $data_orig; ?> <?php selected( $selected ); ?> value="<?php echo $menu->term_id; ?>"> |
636 <?php echo wp_html_excerpt( $menu->name, 40, '…' ); ?> |
686 <?php echo wp_html_excerpt( $menu->name, 40, '…' ); ?> |
637 </option> |
687 </option> |
638 <?php endforeach; ?> |
688 <?php endforeach; ?> |
639 </select> |
689 </select> |
640 <div class="locations-row-links"> |
690 <div class="locations-row-links"> |
641 <?php if ( isset( $menu_locations[ $_location ] ) && 0 != $menu_locations[ $_location ] ) : ?> |
691 <?php if ( isset( $menu_locations[ $_location ] ) && 0 != $menu_locations[ $_location ] ) : ?> |
642 <span class="locations-edit-menu-link"> |
692 <span class="locations-edit-menu-link"> |
643 <a href="<?php echo esc_url( add_query_arg( array( 'action' => 'edit', 'menu' => $menu_locations[$_location] ), admin_url( 'nav-menus.php' ) ) ); ?>"> |
693 <a href=" |
|
694 <?php |
|
695 echo esc_url( |
|
696 add_query_arg( |
|
697 array( |
|
698 'action' => 'edit', |
|
699 'menu' => $menu_locations[ $_location ], |
|
700 ), |
|
701 admin_url( 'nav-menus.php' ) |
|
702 ) |
|
703 ); |
|
704 ?> |
|
705 "> |
644 <span aria-hidden="true"><?php _ex( 'Edit', 'menu' ); ?></span><span class="screen-reader-text"><?php _e( 'Edit selected menu' ); ?></span> |
706 <span aria-hidden="true"><?php _ex( 'Edit', 'menu' ); ?></span><span class="screen-reader-text"><?php _e( 'Edit selected menu' ); ?></span> |
645 </a> |
707 </a> |
646 </span> |
708 </span> |
647 <?php endif; ?> |
709 <?php endif; ?> |
648 <span class="locations-add-menu-link"> |
710 <span class="locations-add-menu-link"> |
649 <a href="<?php echo esc_url( add_query_arg( array( 'action' => 'edit', 'menu' => 0, 'use-location' => $_location ), admin_url( 'nav-menus.php' ) ) ); ?>"> |
711 <a href=" |
|
712 <?php |
|
713 echo esc_url( |
|
714 add_query_arg( |
|
715 array( |
|
716 'action' => 'edit', |
|
717 'menu' => 0, |
|
718 'use-location' => $_location, |
|
719 ), |
|
720 admin_url( 'nav-menus.php' ) |
|
721 ) |
|
722 ); |
|
723 ?> |
|
724 "> |
650 <?php _ex( 'Use new menu', 'menu' ); ?> |
725 <?php _ex( 'Use new menu', 'menu' ); ?> |
651 </a> |
726 </a> |
652 </span> |
727 </span> |
653 </div><!-- .locations-row-links --> |
728 </div><!-- .locations-row-links --> |
654 </td><!-- .menu-location-menus --> |
729 </td><!-- .menu-location-menus --> |
659 <p class="button-controls wp-clearfix"><?php submit_button( __( 'Save Changes' ), 'primary left', 'nav-menu-locations', false ); ?></p> |
734 <p class="button-controls wp-clearfix"><?php submit_button( __( 'Save Changes' ), 'primary left', 'nav-menu-locations', false ); ?></p> |
660 <?php wp_nonce_field( 'save-menu-locations' ); ?> |
735 <?php wp_nonce_field( 'save-menu-locations' ); ?> |
661 <input type="hidden" name="menu" id="nav-menu-meta-object-id" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" /> |
736 <input type="hidden" name="menu" id="nav-menu-meta-object-id" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" /> |
662 </form> |
737 </form> |
663 </div><!-- #menu-locations-wrap --> |
738 </div><!-- #menu-locations-wrap --> |
664 <?php |
739 <?php |
665 /** |
740 /** |
666 * Fires after the menu locations table is displayed. |
741 * Fires after the menu locations table is displayed. |
667 * |
742 * |
668 * @since 3.6.0 |
743 * @since 3.6.0 |
669 */ |
744 */ |
670 do_action( 'after_menu_locations_table' ); ?> |
745 do_action( 'after_menu_locations_table' ); |
|
746 ?> |
671 <?php else : ?> |
747 <?php else : ?> |
672 <div class="manage-menus"> |
748 <div class="manage-menus"> |
673 <?php if ( $menu_count < 2 ) : ?> |
749 <?php if ( $menu_count < 1 ) : ?> |
|
750 <span class="first-menu-message"> |
|
751 <?php _e( 'Create your first menu below.' ); ?> |
|
752 <span class="screen-reader-text"><?php _e( 'Fill in the Menu Name and click the Create Menu button to create your first menu.' ); ?></span> |
|
753 </span><!-- /first-menu-message --> |
|
754 <?php elseif ( $menu_count < 2 ) : ?> |
674 <span class="add-edit-menu-action"> |
755 <span class="add-edit-menu-action"> |
675 <?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' ) ) ) ); ?> |
756 <?php |
|
757 printf( |
|
758 __( 'Edit your menu below, or <a href="%s">create a new menu</a>. Don’t forget to save your changes!' ), |
|
759 esc_url( |
|
760 add_query_arg( |
|
761 array( |
|
762 'action' => 'edit', |
|
763 'menu' => 0, |
|
764 ), |
|
765 admin_url( 'nav-menus.php' ) |
|
766 ) |
|
767 ) |
|
768 ); |
|
769 ?> |
|
770 <span class="screen-reader-text"><?php _e( 'Click the Save Menu button to save your changes.' ); ?></span> |
676 </span><!-- /add-edit-menu-action --> |
771 </span><!-- /add-edit-menu-action --> |
677 <?php else : ?> |
772 <?php else : ?> |
678 <form method="get" action="<?php echo admin_url( 'nav-menus.php' ); ?>"> |
773 <form method="get" action="<?php echo admin_url( 'nav-menus.php' ); ?>"> |
679 <input type="hidden" name="action" value="edit" /> |
774 <input type="hidden" name="action" value="edit" /> |
680 <label for="select-menu-to-edit" class="selected-menu"><?php _e( 'Select a menu to edit:' ); ?></label> |
775 <label for="select-menu-to-edit" class="selected-menu"><?php _e( 'Select a menu to edit:' ); ?></label> |
716 </option> |
812 </option> |
717 <?php endforeach; ?> |
813 <?php endforeach; ?> |
718 </select> |
814 </select> |
719 <span class="submit-btn"><input type="submit" class="button" value="<?php esc_attr_e( 'Select' ); ?>"></span> |
815 <span class="submit-btn"><input type="submit" class="button" value="<?php esc_attr_e( 'Select' ); ?>"></span> |
720 <span class="add-new-menu-action"> |
816 <span class="add-new-menu-action"> |
721 <?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' ) ) ) ); ?> |
817 <?php |
|
818 printf( |
|
819 __( 'or <a href="%s">create a new menu</a>. Don’t forget to save your changes!' ), |
|
820 esc_url( |
|
821 add_query_arg( |
|
822 array( |
|
823 'action' => 'edit', |
|
824 'menu' => 0, |
|
825 ), |
|
826 admin_url( 'nav-menus.php' ) |
|
827 ) |
|
828 ) |
|
829 ); |
|
830 ?> |
|
831 <span class="screen-reader-text"><?php _e( 'Click the Save Menu button to save your changes.' ); ?></span> |
722 </span><!-- /add-new-menu-action --> |
832 </span><!-- /add-new-menu-action --> |
723 </form> |
833 </form> |
724 <?php endif; ?> |
834 <?php |
|
835 endif; |
|
836 |
|
837 $metabox_holder_disabled_class = ''; |
|
838 if ( isset( $_GET['menu'] ) && '0' == $_GET['menu'] ) { |
|
839 $metabox_holder_disabled_class = ' metabox-holder-disabled'; |
|
840 } |
|
841 ?> |
725 </div><!-- /manage-menus --> |
842 </div><!-- /manage-menus --> |
726 <div id="nav-menus-frame" class="wp-clearfix"> |
843 <div id="nav-menus-frame" class="wp-clearfix"> |
727 <div id="menu-settings-column" class="metabox-holder<?php if ( isset( $_GET['menu'] ) && '0' == $_GET['menu'] ) { echo ' metabox-holder-disabled'; } ?>"> |
844 <div id="menu-settings-column" class="metabox-holder<?php echo $metabox_holder_disabled_class; ?>"> |
728 |
845 |
729 <div class="clear"></div> |
846 <div class="clear"></div> |
730 |
847 |
731 <form id="nav-menu-meta" class="nav-menu-meta" method="post" enctype="multipart/form-data"> |
848 <form id="nav-menu-meta" class="nav-menu-meta" method="post" enctype="multipart/form-data"> |
732 <input type="hidden" name="menu" id="nav-menu-meta-object-id" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" /> |
849 <input type="hidden" name="menu" id="nav-menu-meta-object-id" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" /> |
733 <input type="hidden" name="action" value="add-menu-item" /> |
850 <input type="hidden" name="action" value="add-menu-item" /> |
734 <?php wp_nonce_field( 'add-menu_item', 'menu-settings-column-nonce' ); ?> |
851 <?php wp_nonce_field( 'add-menu_item', 'menu-settings-column-nonce' ); ?> |
|
852 <h2><?php _e( 'Add menu items' ); ?></h2> |
735 <?php do_accordion_sections( 'nav-menus', 'side', null ); ?> |
853 <?php do_accordion_sections( 'nav-menus', 'side', null ); ?> |
736 </form> |
854 </form> |
737 |
855 |
738 </div><!-- /#menu-settings-column --> |
856 </div><!-- /#menu-settings-column --> |
739 <div id="menu-management-liquid"> |
857 <div id="menu-management-liquid"> |
740 <div id="menu-management"> |
858 <div id="menu-management"> |
741 <form id="update-nav-menu" method="post" enctype="multipart/form-data"> |
859 <form id="update-nav-menu" method="post" enctype="multipart/form-data"> |
742 <div class="menu-edit <?php if ( $add_new_screen ) echo 'blank-slate'; ?>"> |
860 <?php |
|
861 $new_screen_class = ''; |
|
862 if ( $add_new_screen ) { |
|
863 $new_screen_class = 'blank-slate'; |
|
864 } |
|
865 ?> |
|
866 <h2><?php _e( 'Menu structure' ); ?></h2> |
|
867 <div class="menu-edit <?php echo $new_screen_class; ?>"> |
743 <input type="hidden" name="nav-menu-data"> |
868 <input type="hidden" name="nav-menu-data"> |
744 <?php |
869 <?php |
745 wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); |
870 wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); |
746 wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); |
871 wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); |
747 wp_nonce_field( 'update-nav_menu', 'update-nav-menu-nonce' ); |
872 wp_nonce_field( 'update-nav_menu', 'update-nav-menu-nonce' ); |
748 |
873 |
749 $menu_name_aria_desc = $add_new_screen ? ' aria-describedby="menu-name-desc"' : ''; |
874 $menu_name_aria_desc = $add_new_screen ? ' aria-describedby="menu-name-desc"' : ''; |
750 |
875 |
751 if ( $one_theme_location_no_menus ) { |
876 if ( $one_theme_location_no_menus ) { |
752 $menu_name_val = 'value="' . esc_attr( 'Menu 1' ) . '"'; |
877 $menu_name_val = 'value="' . esc_attr( 'Menu 1' ) . '"'; |
|
878 ?> |
|
879 <input type="hidden" name="zero-menu-state" value="true" /> |
|
880 <?php |
|
881 } else { |
|
882 $menu_name_val = 'value="' . esc_attr( $nav_menu_selected_title ) . '"'; |
|
883 } |
753 ?> |
884 ?> |
754 <input type="hidden" name="zero-menu-state" value="true" /> |
885 <input type="hidden" name="action" value="update" /> |
755 <?php } else { |
|
756 $menu_name_val = 'value="' . esc_attr( $nav_menu_selected_title ) . '"'; |
|
757 } ?> |
|
758 <input type="hidden" name="action" value="update" /> |
|
759 <input type="hidden" name="menu" id="menu" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" /> |
886 <input type="hidden" name="menu" id="menu" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" /> |
760 <div id="nav-menu-header"> |
887 <div id="nav-menu-header"> |
761 <div class="major-publishing-actions wp-clearfix"> |
888 <div class="major-publishing-actions wp-clearfix"> |
762 <label class="menu-name-label" for="menu-name"><?php _e( 'Menu Name' ); ?></label> |
889 <label class="menu-name-label" for="menu-name"><?php _e( 'Menu Name' ); ?></label> |
763 <input name="menu-name" id="menu-name" type="text" class="menu-name regular-text menu-item-textbox" <?php echo $menu_name_val . $menu_name_aria_desc; ?> /> |
890 <input name="menu-name" id="menu-name" type="text" class="menu-name regular-text menu-item-textbox" <?php echo $menu_name_val . $menu_name_aria_desc; ?> /> |
767 </div><!-- END .major-publishing-actions --> |
894 </div><!-- END .major-publishing-actions --> |
768 </div><!-- END .nav-menu-header --> |
895 </div><!-- END .nav-menu-header --> |
769 <div id="post-body"> |
896 <div id="post-body"> |
770 <div id="post-body-content" class="wp-clearfix"> |
897 <div id="post-body-content" class="wp-clearfix"> |
771 <?php if ( ! $add_new_screen ) : ?> |
898 <?php if ( ! $add_new_screen ) : ?> |
772 <h3><?php _e( 'Menu Structure' ); ?></h3> |
899 <?php |
773 <?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.' ); ?> |
900 $hide_style = ''; |
774 <div class="drag-instructions post-body-plain" <?php if ( isset( $menu_items ) && 0 == count( $menu_items ) ) { ?>style="display: none;"<?php } ?>> |
901 if ( isset( $menu_items ) && 0 == count( $menu_items ) ) { |
|
902 $hide_style = 'style="display: none;"'; |
|
903 } |
|
904 $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.' ); |
|
905 ?> |
|
906 <div class="drag-instructions post-body-plain" <?php echo $hide_style; ?>> |
775 <p><?php echo $starter_copy; ?></p> |
907 <p><?php echo $starter_copy; ?></p> |
776 </div> |
908 </div> |
777 <?php |
909 <?php |
778 if ( isset( $edit_markup ) && ! is_wp_error( $edit_markup ) ) { |
910 if ( isset( $edit_markup ) && ! is_wp_error( $edit_markup ) ) { |
779 echo $edit_markup; |
911 echo $edit_markup; |
780 } else { |
912 } else { |
781 ?> |
913 ?> |
782 <ul class="menu" id="menu-to-edit"></ul> |
914 <ul class="menu" id="menu-to-edit"></ul> |
783 <?php } ?> |
915 <?php } ?> |
784 <?php endif; ?> |
916 <?php endif; ?> |
785 <?php if ( $add_new_screen ) : ?> |
917 <?php if ( $add_new_screen ) : ?> |
786 <p class="post-body-plain" id="menu-name-desc"><?php _e( 'Give your menu a name, then click Create Menu.' ); ?></p> |
918 <p class="post-body-plain" id="menu-name-desc"><?php _e( 'Give your menu a name, then click Create Menu.' ); ?></p> |
787 <?php if ( isset( $_GET['use-location'] ) ) : ?> |
919 <?php if ( isset( $_GET['use-location'] ) ) : ?> |
788 <input type="hidden" name="use-location" value="<?php echo esc_attr( $_GET['use-location'] ); ?>" /> |
920 <input type="hidden" name="use-location" value="<?php echo esc_attr( $_GET['use-location'] ); ?>" /> |
789 <?php endif; ?> |
921 <?php endif; ?> |
790 <?php endif; ?> |
922 <?php |
791 <div class="menu-settings" <?php if ( $one_theme_location_no_menus ) { ?>style="display: none;"<?php } ?>> |
923 endif; |
|
924 |
|
925 $no_menus_style = ''; |
|
926 if ( $one_theme_location_no_menus ) { |
|
927 $no_menus_style = 'style="display: none;"'; |
|
928 } |
|
929 ?> |
|
930 <div class="menu-settings" <?php echo $no_menus_style; ?>> |
792 <h3><?php _e( 'Menu Settings' ); ?></h3> |
931 <h3><?php _e( 'Menu Settings' ); ?></h3> |
793 <?php |
932 <?php |
794 if ( ! isset( $auto_add ) ) { |
933 if ( ! isset( $auto_add ) ) { |
795 $auto_add = get_option( 'nav_menu_options' ); |
934 $auto_add = get_option( 'nav_menu_options' ); |
796 if ( ! isset( $auto_add['auto_add'] ) ) |
935 if ( ! isset( $auto_add['auto_add'] ) ) { |
797 $auto_add = false; |
936 $auto_add = false; |
798 elseif ( false !== array_search( $nav_menu_selected_id, $auto_add['auto_add'] ) ) |
937 } elseif ( false !== array_search( $nav_menu_selected_id, $auto_add['auto_add'] ) ) { |
799 $auto_add = true; |
938 $auto_add = true; |
800 else |
939 } else { |
801 $auto_add = false; |
940 $auto_add = false; |
802 } ?> |
941 } |
|
942 } |
|
943 ?> |
803 |
944 |
804 <fieldset class="menu-settings-group auto-add-pages"> |
945 <fieldset class="menu-settings-group auto-add-pages"> |
805 <legend class="menu-settings-group-name howto"><?php _e( 'Auto add pages' ); ?></legend> |
946 <legend class="menu-settings-group-name howto"><?php _e( 'Auto add pages' ); ?></legend> |
806 <div class="menu-settings-input checkbox-input"> |
947 <div class="menu-settings-input checkbox-input"> |
807 <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> |
948 <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> |
808 </div> |
949 </div> |
809 </fieldset> |
950 </fieldset> |
810 |
951 |
811 <?php if ( current_theme_supports( 'menus' ) ) : ?> |
952 <?php if ( current_theme_supports( 'menus' ) ) : ?> |
812 |
953 |