Skip to content

Commit 8d956c5

Browse files
authored
New Blueprint: Grid Variations enabled (#4)
Using this blueprint configuration - Logs into wp-admin - Installs Gutenberg plugin and activates it - enabled the Grid Variations from the Gutenberg > Experiments page - Navigates to the Site Editor screen as landing page.
1 parent 363d528 commit 8d956c5

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"$schema": "https://playground.wordpress.net/blueprint-schema.json",
3+
"meta": {
4+
"title": "Grid Variations Experiments enabled",
5+
"description": "Blueprint example to toggle on enable a feature from the Experiments page in Gutenberg plugin",
6+
"author": "bph",
7+
"categories": ["Gutenberg", "Experiments"]
8+
},
9+
"landingPage": "/wp-admin/site-editor.php",
10+
"steps":[
11+
{
12+
"step": "login",
13+
"username": "admin",
14+
"password": "password"
15+
},
16+
{
17+
"step":"installPlugin",
18+
"pluginZipFile":{
19+
"resource": "wordpress.org/plugins",
20+
"slug":"gutenberg"
21+
},
22+
"options": {
23+
"activate": true
24+
}
25+
},
26+
{
27+
"step": "runPHP",
28+
"code": "<?php require '/wordpress/wp-load.php'; update_option( 'gutenberg-experiments', array( 'gutenberg-grid-interactivity' => true ) );"
29+
30+
}
31+
32+
]
33+
}

0 commit comments

Comments
 (0)