Changeset 55285 for trunk/src/wp-includes/class-wp-theme-json.php
- Timestamp:
- 02/07/2023 05:59:44 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-theme-json.php
r55255 r55285 305 305 * @since 6.0.0 Added `color.defaultDuotone`. 306 306 * @since 6.1.0 Added `layout.definitions` and `useRootPaddingAwareAlignments`. 307 * @since 6.2.0 Added `dimensions.minHeight`, 'shadow.presets', and 'shadow.defaultPresets'. 307 * @since 6.2.0 Added `dimensions.minHeight`, 'shadow.presets', 'shadow.defaultPresets', 308 * `position.fixed` and `position.sticky`. 308 309 * @var array 309 310 */ … … 339 340 'definitions' => null, 340 341 'wideSize' => null, 342 ), 343 'position' => array( 344 'fixed' => null, 345 'sticky' => null, 341 346 ), 342 347 'spacing' => array( … … 514 519 * 515 520 * @since 6.0.0 516 * @since 6.2.0 Added `dimensions.minHeight` .521 * @since 6.2.0 Added `dimensions.minHeight` and `position.sticky`. 517 522 * @var array 518 523 */ … … 524 529 array( 'color', 'link' ), 525 530 array( 'dimensions', 'minHeight' ), 531 array( 'position', 'sticky' ), 526 532 array( 'spacing', 'blockGap' ), 527 533 array( 'spacing', 'margin' ),
Note: See TracChangeset
for help on using the changeset viewer.