- Timestamp:
- 11/10/2025 10:22:18 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/interactivity-api/class-wp-interactivity-api.php
r61020 r61197 521 521 } 522 522 } else { 523 if ( 0 !== count( $p->get_attribute_names_with_prefix( 'data-wp-each-child' ) ) ) { 523 $each_child_attrs = $p->get_attribute_names_with_prefix( 'data-wp-each-child' ); 524 if ( null === $each_child_attrs ) { 525 continue; 526 } 527 528 if ( 0 !== count( $each_child_attrs ) ) { 524 529 /* 525 530 * If the tag has a `data-wp-each-child` directive, jump to its closer
Note: See TracChangeset
for help on using the changeset viewer.