Changeset 60790
- Timestamp:
- 09/22/2025 09:30:06 AM (3 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-block.php
r60764 r60790 301 301 self::BLOCK_BINDINGS_SUPPORTED_ATTRIBUTES[ $block_type ] ?? 302 302 array(); 303 304 /** 305 * Filters the supported block attributes for block bindings. 306 * 307 * @since 6.9.0 308 * 309 * @param string[] $supported_block_attributes The block's attributes that are supported by block bindings. 310 * @param string $block_type The block type whose attributes are being filtered. 311 */ 312 $supported_block_attributes = apply_filters( 313 'block_bindings_supported_attributes', 314 $supported_block_attributes, 315 $block_type 316 ); 303 317 304 318 /**
Note: See TracChangeset for help on using the changeset viewer.