Changeset 56742 for trunk/src/wp-includes/class-wp-block-supports.php
- Timestamp:
- 09/29/2023 10:18:05 AM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-block-supports.php
r55732 r56742 143 143 $registered_block_types = $block_registry->get_all_registered(); 144 144 foreach ( $registered_block_types as $block_type ) { 145 if ( ! property_exists( $block_type, 'supports') ) {145 if ( ! ( $block_type instanceof WP_Block_Type ) ) { 146 146 continue; 147 147 }
Note: See TracChangeset
for help on using the changeset viewer.