Skip to content

Commit ace3012

Browse files
authored
Updating wp versions blueprints (#2573)
## Motivation for the change, related issues This change expands the number of supported major WordPress versions for the `wp` parameter from the last four to the last six. I have looked at the folder `packages/playground/wordpress-builds/src/wordpress`, which contains those six versions. ## Testing Instructions (or ideally a Blueprint) 1. Download the Branch 2. Install the project 3. Run the command `npm run dev:docs` 4. Navigate to the page `wordpress-playground/blueprints/data-format` 5. Check the new content listing the six last WordPress versions
1 parent ec1ed3a commit ace3012

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/docs/site/docs/blueprints/03-data-format.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ The `landingPage` property tells Playground which URL to navigate to after the B
5656
The `preferredVersions` property declares your preferred PHP and WordPress versions. It can contain the following properties:
5757

5858
- `php` (string): Loads the specified PHP version. Accepts `7.0`, `7.1`, `7.2`, `7.3`, `7.4`, `8.0`, `8.1`, `8.2`, `8.3`, `8.4`, or `latest`. Minor versions like `7.4.1` are not supported.
59-
- `wp` (string): Loads the specified WordPress version. Accepts the last four major WordPress versions. As of June 1, 2024, that's `6.2`, `6.3`, `6.4`, or `6.5`. You can also use the generic values `latest`, `nightly`, or `beta`. To use a pre-release version of WordPress, `beta` will load the latest beta or release candidate versions of a release cycle (Beta or RC).
59+
- `wp` (string): Loads the specified WordPress version. Accepts the last six major WordPress versions. As of September 1, 2025, that's `6.3`, `6.4`, `6.5`, `6.6`, `6.7` or `6.8`. You can also use the generic values `latest`, `nightly`, or `beta`. To use a pre-release version of WordPress, `beta` will load the latest beta or release candidate versions of a release cycle (Beta or RC).
6060

6161
```js
6262
{
6363
"preferredVersions": {
64-
"php": "8.0",
65-
"wp": "6.5"
64+
"php": "8.3",
65+
"wp": "6.7"
6666
},
6767
}
6868
```

0 commit comments

Comments
 (0)