Changeset 57068 for trunk/src/wp-includes/class-wp-block-type.php
- Timestamp:
- 11/06/2023 02:45:28 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-block-type.php
r56587 r57068 243 243 * Attributes supported by every block. 244 244 * 245 * @since 6.0.0 245 * @since 6.0.0 Added `lock`. 246 * @since 6.5.0 Added `metadata`. 246 247 * @var array 247 248 */ 248 249 const GLOBAL_ATTRIBUTES = array( 249 'lock' => array( 'type' => 'object' ), 250 'lock' => array( 'type' => 'object' ), 251 'metadata' => array( 'type' => 'object' ), 250 252 ); 251 253
Note: See TracChangeset
for help on using the changeset viewer.