From 66d6167cf5115cf35d6c072539cde8afcff85a0c Mon Sep 17 00:00:00 2001 From: marcusquinn <6428977+marcusquinn@users.noreply.github.com> Date: Mon, 24 Nov 2025 23:22:33 +0000 Subject: [PATCH] Fix multisite blueprint: use wp-cli for network activation The 'options.networkActivate' property is not valid in installPlugin step. Use separate wp-cli steps to network-activate plugins instead. --- playground/multisite-blueprint.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/playground/multisite-blueprint.json b/playground/multisite-blueprint.json index 000af2f..3704196 100644 --- a/playground/multisite-blueprint.json +++ b/playground/multisite-blueprint.json @@ -31,10 +31,6 @@ "pluginData": { "resource": "wordpress.org/plugins", "slug": "plugin-toggle" - }, - "options": { - "activate": true, - "networkActivate": true } }, { @@ -42,11 +38,15 @@ "pluginData": { "resource": "wordpress.org/plugins", "slug": "kadence-blocks" - }, - "options": { - "activate": true, - "networkActivate": true } + }, + { + "step": "wp-cli", + "command": "wp plugin activate plugin-toggle --network" + }, + { + "step": "wp-cli", + "command": "wp plugin activate kadence-blocks --network" } ] }