Last active
March 25, 2024 12:23
-
-
Save ndiego/bcd63cd3d123d34d4cce1c27a79c1a4c to your computer and use it in GitHub Desktop.
Block Hooks API - Examples 1 and 3
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
{ | |
"landingPage": "/wp-admin/site-editor.php?postType=wp_template&postId=twentytwentyfour%2F%2Fsingle", | |
"preferredVersions": { | |
"php": "8.0", | |
"wp": "nightly" | |
}, | |
"features": { | |
"networking": true | |
}, | |
"steps": [ | |
{ | |
"step": "login" | |
}, | |
{ | |
"step": "installPlugin", | |
"pluginZipFile": { | |
"resource": "url", | |
"url": "https://raw.githubusercontent.com/ockham/like-button/trunk/_playground/like-button.zip" | |
}, | |
"options": { | |
"activate": true | |
} | |
}, | |
{ | |
"step": "installPlugin", | |
"pluginZipFile": { | |
"resource": "url", | |
"url": "https://raw.githubusercontent.com/WordPress/block-development-examples/deploy/zips/copyright-date-block-09aac3.zip" | |
}, | |
"options": { | |
"activate": true | |
} | |
}, | |
{ | |
"step": "mkdir", | |
"path": "/wordpress/wp-content/plugins/block-hooks-demo" | |
}, | |
{ | |
"step": "writeFile", | |
"path": "/wordpress/wp-content/plugins/block-hooks-demo/block-hooks-demo.php", | |
"data": { | |
"resource": "url", | |
"url": "https://gist.githubusercontent.com/ndiego/456b74b243d86c97cda89264c68cbdee/raw/c4a9167560adad57724446aad1c4a256825f7e29/block-hooks-demo.php" | |
} | |
}, | |
{ | |
"step": "activatePlugin", | |
"pluginName": "Block Hooks Demo", | |
"pluginPath": "/wordpress/wp-content/plugins/block-hooks-demo" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment