Created
November 14, 2025 22:42
-
-
Save annezazu/e3eb7937cd2c7483e84d2ac50e6b3c0b to your computer and use it in GitHub Desktop.
blueprint test gist for GB
This file contains hidden or 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", | |
| "steps": [ | |
| { | |
| "step": "installPlugin", | |
| "pluginData": { | |
| "resource": "url", | |
| "url": "https://block-museum.com/wp-content/uploads/2025/11/gutenberg-80.zip" | |
| } | |
| }, | |
| { | |
| "step": "runPHP", | |
| "code": "<?php require '/wordpress/wp-load.php'; require_once ABSPATH . 'wp-admin/includes/plugin.php'; $plugins = get_plugins(); $gutenberg_plugin_file = null; foreach ( $plugins as $file => $data ) { if ( isset( $data['Name'] ) && stripos( $data['Name'], 'gutenberg' ) !== false ) { $gutenberg_plugin_file = $file; break; } } if ( $gutenberg_plugin_file ) { activate_plugin( $gutenberg_plugin_file ); } $experiments = get_option( 'gutenberg-experiments', array() ); $experiments['gutenberg-content-only-pattern-insertion'] = true; update_option( 'gutenberg-experiments', $experiments );" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment