Skip to content

Instantly share code, notes, and snippets.

@annezazu
Created November 14, 2025 22:42
Show Gist options
  • Select an option

  • Save annezazu/e3eb7937cd2c7483e84d2ac50e6b3c0b to your computer and use it in GitHub Desktop.

Select an option

Save annezazu/e3eb7937cd2c7483e84d2ac50e6b3c0b to your computer and use it in GitHub Desktop.
blueprint test gist for GB
{
"$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