Changeset 57254 for trunk/src/wp-includes/class-wp-theme-json.php
- Timestamp:
- 01/09/2024 06:10:09 AM (2 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-theme-json.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-theme-json.php
r57247 r57254 345 345 * @since 6.4.0 Added support for `layout.allowEditing`, `background.backgroundImage`, 346 346 * `typography.writingMode`, `lightbox.enabled` and `lightbox.allowEditing`. 347 * @since 6.5.0 Added support for `layout.allowCustomContentAndWideSize`. 347 * @since 6.5.0 Added support for `layout.allowCustomContentAndWideSize` and 348 * `background.backgroundSize`. 348 349 * @var array 349 350 */ … … 353 354 'background' => array( 354 355 'backgroundImage' => null, 356 'backgroundSize' => null, 355 357 ), 356 358 'border' => array( … … 574 576 * @since 6.2.0 Added `dimensions.minHeight` and `position.sticky`. 575 577 * @since 6.4.0 Added `background.backgroundImage`. 578 * @since 6.5.0 Added `background.backgroundSize`. 576 579 * @var array 577 580 */ 578 581 const APPEARANCE_TOOLS_OPT_INS = array( 579 582 array( 'background', 'backgroundImage' ), 583 array( 'background', 'backgroundSize' ), 580 584 array( 'border', 'color' ), 581 585 array( 'border', 'radius' ),
Note: See TracChangeset
for help on using the changeset viewer.