diff --git src/wp-includes/class-wp-block-type.php src/wp-includes/class-wp-block-type.php
index 6ffda95b4e..74da353fa1 100644
|
|
class WP_Block_Type { |
165 | 165 | } |
166 | 166 | } |
167 | 167 | |
| 168 | /** |
| 169 | * Filters the prepared block attributes before rendering the current block. |
| 170 | * |
| 171 | * @since 5.0.1 |
| 172 | * |
| 173 | * @param array $attributes Block attributes. |
| 174 | * @param WP_Block_Type $block_type Block object which attributes are filtered. |
| 175 | */ |
| 176 | $attributes = apply_filters( 'block_prepared_attributes', $attributes, $this ); |
| 177 | |
168 | 178 | return $attributes; |
169 | 179 | } |
170 | 180 | |