{
  "$schema": "https://playground.wordpress.net/blueprint-schema.json",
  "landingPage": "/",
  "steps": [
    {
      "step": "setSiteOptions",
      "options": {
        "permalink_structure": "/%postname%/"
      }
    },
    {
      "step": "installPlugin",
      "pluginData": {
        "resource": "wordpress.org/plugins",
        "slug": "elementor"
      },
      "options": {
        "activate": true
      }
    },
    {
      "step": "installTheme",
      "themeData": {
        "resource": "wordpress.org/themes",
        "slug": "hello-elementor"
      },
      "options": {
        "activate": true
      }
    },
    {
      "step": "runPHP",
      "code": "<?php\n$page_args = [\n  'post_type'    => 'page',\n  'post_status'  => 'publish',\n  'post_title'   => 'Advanced Image Gallery',\n  'post_content' => '<p>Hello World</p>',\n];\n$page_id = wp_insert_post( $page_args );\nupdate_option( 'page_on_front', $page_id );\nupdate_option( 'show_on_front', 'page' );"
    }
  ]
}