Files
wp-plugin-starter-template-…/playground/multisite-blueprint.json

45 lines
922 B
JSON

{
"$schema": "https://playground.wordpress.net/blueprint-schema.json",
"landingPage": "/wp-admin/network/",
"login": true,
"features": {
"networking": {
"type": "subdirectory"
},
"phpVersion": "7.4"
},
"steps": [
{
"step": "defineWpConfigConsts",
"consts": {
"WP_DEBUG": true,
"WP_DEBUG_LOG": true,
"WP_DEBUG_DISPLAY": true
}
},
{
"step": "enableMultisite"
},
{
"step": "wp-cli",
"command": "wp site create --slug=testsite"
},
{
"step": "wp-cli",
"command": "wp plugin install plugin-toggle"
},
{
"step": "wp-cli",
"command": "wp plugin install kadence-blocks"
},
{
"step": "wp-cli",
"command": "wp plugin activate plugin-toggle --network"
},
{
"step": "wp-cli",
"command": "wp plugin activate kadence-blocks --network"
}
]
}