The site stays full and usable. Tools dock only when you ask for files, blueprints, database, logs, or settings.
Start new, browse blueprints, or resume browser-stored sites.
Site Manager tools are docked over the live site and can be collapsed at any time.
<?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';
/wordpress/wp-content/database/.ht.sqlite
| ID | post_title | post_type | post_status |
|---|---|---|---|
| 1 | Hello world! | post | publish |
| 2 | Sample Page | page | publish |
| 8 | Hello from WordPress Playground! | page | publish |
| 12 | Privacy Policy | page | draft |
This is the single destructive gate for runtime changes. Saving first keeps a resumable copy in browser storage.