From 3c1ec14c2d1255fb3cb2d7b994ef914fa48ceef4 Mon Sep 17 00:00:00 2001 From: marcusquinn <6428977+marcusquinn@users.noreply.github.com> Date: Tue, 22 Apr 2025 14:23:02 +0100 Subject: [PATCH] Update WordPress Playground blueprints to use Kadence Blocks instead of Hello Dolly and install multiple plugins in one step --- playground/blueprint.json | 14 ++------------ playground/multisite-blueprint.json | 6 +----- 2 files changed, 3 insertions(+), 17 deletions(-) diff --git a/playground/blueprint.json b/playground/blueprint.json index fe4df61..2612979 100644 --- a/playground/blueprint.json +++ b/playground/blueprint.json @@ -10,18 +10,8 @@ } }, { - "step": "installPlugin", - "pluginData": { - "resource": "wordpress.org/plugins", - "slug": "plugin-toggle" - } - }, - { - "step": "installPlugin", - "pluginData": { - "resource": "wordpress.org/plugins", - "slug": "hello-dolly" - } + "step": "wp-cli", + "command": "wp plugin install plugin-toggle kadence-blocks --activate" } ] } diff --git a/playground/multisite-blueprint.json b/playground/multisite-blueprint.json index cde9d03..9b56443 100644 --- a/playground/multisite-blueprint.json +++ b/playground/multisite-blueprint.json @@ -21,11 +21,7 @@ }, { "step": "wp-cli", - "command": "wp plugin install plugin-toggle --activate-network" - }, - { - "step": "wp-cli", - "command": "wp plugin install hello-dolly" + "command": "wp plugin install plugin-toggle kadence-blocks --activate-network" } ] }