-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathblueprint-serve.json
45 lines (45 loc) · 944 Bytes
/
blueprint-serve.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"$schema": "https://playground.wordpress.net/blueprint-schema.json",
"landingPage": "/wp-admin/edit.php?post_type=page",
"preferredVersions": {
"wp": "6.5",
"php": "8.0"
},
"login": true,
"steps": [
{
"step": "installTheme",
"themeZipFile": {
"resource": "wordpress.org/themes",
"slug": "twentytwentyfour"
}
},
{
"step": "mkdir",
"path": "/wordpress/wp-content/mu-plugins"
},
{
"step": "writeFile",
"path": "/wordpress/wp-content/mu-plugins/0-hide-admin-bar.php",
"data": "<?php add_filter( 'show_admin_bar', '__return_false' ); "
},
{
"step": "installPlugin",
"pluginZipFile": {
"resource": "wordpress.org/plugins",
"slug": "create-block-theme"
}
},
{
"step": "installPlugin",
"pluginZipFile": {
"resource": "wordpress.org/plugins",
"slug": "gutenberg"
}
},
{
"step": "activatePlugin",
"pluginPath": "wp-docs-plugin/plugin.php"
}
]
}