Changeset 55712
- Timestamp:
- 05/03/2023 07:44:49 PM (21 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.devcontainer/devcontainer.json
r55353 r55712 4 4 "dockerComposeFile": "docker-compose.yml", 5 5 "service": "app", 6 6 "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", 7 7 8 8 // Features to add to the dev container. More info: https://containers.dev/features. -
trunk/src/wp-includes/class-wp-theme-json.php
r55711 r55712 973 973 * 974 974 * @since 5.8.0 975 * @since 5.9.0 Removed the `$type` parameter `, added the `$types` and `$origins` parameters.975 * @since 5.9.0 Removed the `$type` parameter, added the `$types` and `$origins` parameters. 976 976 * 977 977 * @param string[] $types Types of styles to load. Will load all by default. It accepts: … … 2750 2750 * For example: 2751 2751 * 2752 * array(2753 * 'color' => array(2754 * 'palette' => array( 'slug-1', 'slug-2' ),2755 * 'gradients' => array( 'slug-3', 'slug-4' ),2756 * ),2757 * )2752 * array( 2753 * 'color' => array( 2754 * 'palette' => array( 'slug-1', 'slug-2' ), 2755 * 'gradients' => array( 'slug-3', 'slug-4' ), 2756 * ), 2757 * ) 2758 2758 * 2759 2759 * @since 5.9.0 … … 3431 3431 } 3432 3432 3433 // If there are 7 or lesssteps in the scale revert to numbers for labels instead of t-shirt sizes.3433 // If there are 7 or fewer steps in the scale revert to numbers for labels instead of t-shirt sizes. 3434 3434 if ( $spacing_scale['steps'] <= 7 ) { 3435 3435 for ( $spacing_sizes_count = 0; $spacing_sizes_count < count( $spacing_sizes ); $spacing_sizes_count++ ) {
Note: See TracChangeset
for help on using the changeset viewer.