Changeset 56549 for trunk/src/wp-includes/class-wp-walker.php
- Timestamp:
- 09/09/2023 09:26:01 AM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-walker.php
r56547 r56549 326 326 $empty_array = array(); 327 327 foreach ( $elements as $e ) { 328 $count++;328 ++$count; 329 329 if ( $count < $start ) { 330 330 continue; … … 373 373 374 374 foreach ( $top_level_elements as $e ) { 375 $count++;375 ++$count; 376 376 377 377 // For the last page, need to unset earlier children in order to keep track of orphans. … … 417 417 foreach ( $elements as $e ) { 418 418 if ( empty( $e->$parent_field ) ) { 419 $num++;419 ++$num; 420 420 } 421 421 }
Note: See TracChangeset
for help on using the changeset viewer.