Playground creates fresh WordPress instances on each page load. Refreshing the browser page discards all database changes, uploads, and modifications.
Why this happens: Playground streams WordPress directly to your browser rather than serving it from a traditional server. Each refresh starts a clean slate.
To persist your work:
Save: Enable browser storage via the "Save" button (top right, next to address bar), before refreshing the page via the browser bar.
For development: Use Playground CLI which supports persistent local storage
tip
The dedicated refresh button inside Playground only reloads WordPress content—it preserves your PHP/WP state. The browser's refresh button (F5 or Cmd+R) destroys the entire instance.
WordPress Playground is designed to work across all major desktop and mobile browsers. This includes:
Desktop browsers: Chrome, Firefox, Safari, Edge, and other Chromium-based browsers
Mobile browsers: Safari (iOS), Chrome (Android), and other mobile browser variants
Playground leverages modern web technologies and should function consistently across these browser environments. However, some advanced features may have varying levels of support depending on the specific browser and its version.
Playground renders WordPress in an iframe so clicking links with target="_top" will reload the page you’re working on.
Also, JavaScript popups originating in the iframe may not always display.
Playground supports running PHP code in Blueprints using the runPHP step. To run WordPress-specific PHP functions, you’d need to first require wp-load.php:
You can execute wp-cli commands via the Blueprints wp-cli step. However, since Playground runs in the browser, it doesn't support the full array of available commands. While there is no definite list of supported commands, experimenting in the online demo will help you assess what's possible.