{
    "$schema": "https://playground.wordpress.net/blueprint-schema.json",
    "landingPage": "/?p=6",
    "preferredVersions": {
        "php": "8.1",
        "wp": "latest"
    },
    "phpExtensionBundles": ["kitchen-sink"],
    "steps": [
        {
            "step": "login",
            "username": "admin",
            "password": "password"
        },
        {
            "step": "installPlugin",
            "pluginZipFile": {
                "resource": "wordpress.org\/plugins",
                "slug": "disable-block"
            },
            "options": {
                "activate": true
            }
        },
        {
            "step": "runPHP",
            "code": "<?php\ninclude 'wordpress/wp-load.php';\nwp_insert_post(array(\n'import_id' => 6,\n'post_title' => 'Disable Block',\n'post_type' => 'page',\n'post_content' => '<!-- wp:paragraph -->\n<p>Enabled</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"disableBlock\":true} -->\n<p>Disabled</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Please click on \"Edit Page\" above in the admin bar to see the functionality of the plugin in the backend.</p>\n<!-- /wp:paragraph -->',\n'post_status' => 'publish',\n'post_author' => 1\n));"
        }
    ]
}