@@ -183,7 +183,7 @@ private function nested_menu_items( &$menu_items, $parent = null ) {
183
183
184
184
// Separate menu_items into parents & children.
185
185
array_map ( function ( $ i ) use ( $ parent , &$ children , &$ parents ){
186
- if ( $ i ['ID ' ] != $ parent && $ i ['parent ' ] == $ parent ) {
186
+ if ( $ i ['id ' ] != $ parent && $ i ['parent ' ] == $ parent ) {
187
187
$ parents [] = $ i ;
188
188
} else {
189
189
$ children [] = $ i ;
@@ -192,8 +192,8 @@ private function nested_menu_items( &$menu_items, $parent = null ) {
192
192
193
193
foreach ( $ parents as &$ parent ) {
194
194
195
- if ( $ this ->has_children ( $ children , $ parent ['ID ' ] ) ) {
196
- $ parent ['children ' ] = $ this ->nested_menu_items ( $ children , $ parent ['ID ' ] );
195
+ if ( $ this ->has_children ( $ children , $ parent ['id ' ] ) ) {
196
+ $ parent ['children ' ] = $ this ->nested_menu_items ( $ children , $ parent ['id ' ] );
197
197
}
198
198
}
199
199
@@ -271,41 +271,52 @@ public function get_menu_location( $request ) {
271
271
272
272
$ wp_menu = wp_get_nav_menu_object ( $ locations [ $ location ] );
273
273
$ menu_items = wp_get_nav_menu_items ( $ wp_menu ->term_id );
274
- $ sorted_menu_items = $ top_level_menu_items = $ menu_items_with_children = array ();
275
274
276
- foreach ( (array ) $ menu_items as $ menu_item ) {
277
- $ sorted_menu_items [ $ menu_item ->menu_order ] = $ menu_item ;
278
- }
279
- foreach ( $ sorted_menu_items as $ menu_item ) {
280
- if ( (int ) $ menu_item ->menu_item_parent !== 0 ) {
281
- $ menu_items_with_children [ $ menu_item ->menu_item_parent ] = true ;
282
- } else {
283
- $ top_level_menu_items [] = $ menu_item ;
284
- }
285
- }
286
-
287
- $ menu = array ();
288
-
289
- while ( $ sorted_menu_items ) :
290
-
291
- $ i = 0 ;
292
- foreach ( $ top_level_menu_items as $ top_item ) :
293
-
294
- $ menu [ $ i ] = $ this ->format_menu_item ( $ top_item , false );
295
- if ( isset ( $ menu_items_with_children [ $ top_item ->ID ] ) ) {
296
- $ menu [ $ i ]['children ' ] = $ this ->get_nav_menu_item_children ( $ top_item ->ID , $ menu_items , false );
297
- } else {
298
- $ menu [ $ i ]['children ' ] = array ();
299
- }
300
-
301
- $ i ++;
302
- endforeach ;
303
-
304
- break ;
305
-
306
- endwhile ;
307
-
308
- return $ menu ;
275
+ /**
276
+ * wp_get_nav_menu_items() outputs a list that's already sequenced correctly.
277
+ * So the easiest thing to do is to reverse the list and then build our tree
278
+ * from the ground up
279
+ */
280
+ $ rev_items = array_reverse ( $ menu_items );
281
+ $ rev_menu = array ();
282
+ $ cache = array ();
283
+ foreach ( $ rev_items as $ item ) :
284
+ $ formatted = array (
285
+ 'ID ' => abs ( $ item ->ID ),
286
+ 'order ' => (int ) $ item ->menu_order ,
287
+ 'parent ' => abs ( $ item ->menu_item_parent ),
288
+ 'title ' => $ item ->title ,
289
+ 'url ' => $ item ->url ,
290
+ 'attr ' => $ item ->attr_title ,
291
+ 'target ' => $ item ->target ,
292
+ 'classes ' => implode ( ' ' , $ item ->classes ),
293
+ 'xfn ' => $ item ->xfn ,
294
+ 'description ' => $ item ->description ,
295
+ 'object_id ' => abs ( $ item ->object_id ),
296
+ 'object ' => $ item ->object ,
297
+ 'type ' => $ item ->type ,
298
+ 'type_label ' => $ item ->type_label ,
299
+ 'children ' => array (),
300
+ );
301
+ // Pickup my children
302
+ if ( array_key_exists ( $ item ->ID , $ cache ) ) {
303
+ $ formatted ['children ' ] = array_reverse ( $ cache [ $ item ->ID ] );
304
+ }
305
+
306
+ $ formatted = apply_filters ( 'rest_menus_format_menu_item ' , $ formatted );
307
+
308
+ if ( $ item ->menu_item_parent != 0 ) {
309
+ // Wait for parent to pick me up
310
+ if ( array_key_exists ( $ item ->menu_item_parent , $ cache ) ) {
311
+ array_push ( $ cache [ $ item ->menu_item_parent ], $ formatted );
312
+ } else {
313
+ $ cache [ $ item ->menu_item_parent ] = array ( $ formatted , );
314
+ }
315
+ } else {
316
+ array_push ( $ rev_menu , $ formatted );
317
+ }
318
+ endforeach ;
319
+ return array_reverse ( $ rev_menu );
309
320
}
310
321
311
322
0 commit comments