Skip to content

Instantly share code, notes, and snippets.

@annezazu
Created August 29, 2024 17:08
Show Gist options
  • Save annezazu/463dd76749e3763c1a3f5d9f981366d5 to your computer and use it in GitHub Desktop.
Save annezazu/463dd76749e3763c1a3f5d9f981366d5 to your computer and use it in GitHub Desktop.
Blueprint for block bindings
{
"$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