/hello-from-playground/
Start, resume, or replace a Playground
Every start route opens its own input state before it changes the running site.
Start a new Playground
Selected route: WordPress PRFeatured blueprints
Your Playgrounds
Saved to this browser storageBlueprint gallery
Search and filter the full gallery, then boot the selected blueprint in the Site tab.
W
This is an Unsaved Playground. Changes will be lost on page refresh until you save to browser storage.
Runtime settings
One canonical settings tabChange impact
reset requiredWordPress or PHP version
Requires replacing the current runtime and database state.
destructiveRequires replacing the current runtime and database state.
Network and multisite
Changes how the site boots and may rewrite generated configuration.
destructiveChanges how the site boots and may rewrite generated configuration.
Language
Installs a language pack during the next boot.
resetInstalls a language pack during the next boot.
Files
Browse `/wordpress`, create files or folders, and inspect PHP source.
<?php
define( 'DB_NAME', 'database_name_here' );
define( 'DB_USER', 'username_here' );
define( 'DB_PASSWORD', 'password_here' );
define( 'DB_HOST', 'localhost' );
define( 'DB_CHARSET', 'utf8mb4' );
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', __DIR__ . '/' );
}
require_once ABSPATH . 'wp-settings.php';
Blueprint editor
Edit the active blueprint bundle and run it against the current Playground.
blueprint.json
landing-page.html
mu-plugins/welcome.php
Database
Early-access SQLite-backed database browser for the current WordPress instance.
Database management is an early access feature. WordPress Playground emulates MySQL using SQLite, so schema and query tooling may not match a server install.
| table | rows | size | recent record |
|---|---|---|---|
| wp_posts | 12 | 128 KB | Hello from WordPress Playground! |
| wp_options | 171 | 196 KB | blogname = My WordPress Website |
| wp_users | 1 | 16 KB | admin |
| wp_terms | 5 | 24 KB | Uncategorized |
Logs
Search PHP notices and warnings from the running Playground.