Created
August 29, 2024 17:08
-
-
Save annezazu/463dd76749e3763c1a3f5d9f981366d5 to your computer and use it in GitHub Desktop.
Blueprint for block bindings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://playground.wordpress.net/blueprint-schema.json", | |
"preferredVersions": { | |
"php": "8.3", | |
"wp": "latest" | |
}, | |
"features": { | |
"networking": true | |
}, | |
"steps": [ | |
{ | |
"step": "login" | |
}, | |
{ | |
"step": "installTheme", | |
"themeZipFile": { | |
"resource": "url", | |
"url": "https://raw.githubusercontent.com/wptrainingteam/tt4-book-reviews/master/_playground/tt4-book-reviews.zip" | |
}, | |
"options": { | |
"activate": true | |
} | |
}, | |
{ | |
"step": "runPHP", | |
"code": "<?php require '/wordpress/wp-load.php'; $wpdb->query('delete from wp_posts');" | |
}, | |
{ | |
"step": "importWxr", | |
"file": { | |
"resource": "url", | |
"url": "https://raw.githubusercontent.com/wptrainingteam/tt4-book-reviews/master/_playground/site-content.xml" | |
} | |
}, | |
{ | |
"step": "installPlugin", | |
"pluginZipFile": { | |
"resource": "wordpress.org/plugins", | |
"slug": "gutenberg" | |
}, | |
"options": { | |
"activate": true | |
} | |
}, | |
{ | |
"step": "runPHP", | |
"code": "<?php require '/wordpress/wp-load.php'; update_option( 'gutenberg-experiments', array( 'gutenberg-block-bindings-ui' => true ) );" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment