Start or resume a Playground
The launcher is a tab, not a drawer. Route cards expose the exact input they need before booting the selected site.
Start a new Playground
Start from a Blueprint
Your Playgrounds
Blueprint gallery
Search and filter the full catalog. Selecting a card boots that blueprint and returns the live site to the Site tab.
Settings
One canonical settings tab for WordPress, PHP, language, network access, and multisite. Rows identify when reset is required.
Apply settings and reset Playground
This destructive action wipes the WordPress database, uploads, and theme or plugin changes in the running site. Save first if you need this session later.
Files
Browse `/wordpress/`, create files or folders, and inspect PHP source without shrinking the live Site tab permanently.
<?php
define( 'CONCATENATE_SCRIPTS', false );
/** The base configuration for WordPress. */
define( 'DB_NAME', 'database_name_here' );
define( 'DB_USER', 'username_here' );
define( 'DB_PASSWORD', 'password_here' );
define( 'DB_HOST', 'localhost' );
define( 'DB_CHARSET', 'utf8mb4' );
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', __DIR__ . '/' );
}
require_once ABSPATH . 'wp-settings.php';
Blueprint
Edit the active blueprint JSON, copy a shareable link, download the bundle, or run it again.
{
"$schema": "https://playground.wordpress.net/blueprint-schema.json",
"meta": {
"title": "Playground Welcome Landing Page",
"description": "Landing page for the WordPress Playground.",
"author": "fellyph"
},
"login": true,
"landingPage": "/hello-from-playground/",
"steps": [
{
"step": "runPHPWithOptions",
"options": {
"code": "<?php /* create welcome page */"
}
}
],
"preferredVersions": {
"php": "8.3",
"wp": "latest"
},
"features": {}
}
Database
Early-access SQLite-backed database browser for the current Playground.
| ID | post_title | post_status |
|---|---|---|
| 1 | Hello world! | publish |
| 2 | Sample Page | publish |
| 7 | Hello from WordPress Playground! | publish |
| 12 | Navigation menu | publish |
Logs
Search the PHP error log while the Site tab stays one click away.
Actions
Site Manager actions that do not need a persistent sidebar.