This post covers the two Playground meetings held in February 2026. These are bi-weekly chats where contributors to WordPress Playground gather to discuss updates, ongoing work, and plans for current and future releases. All are welcome to join.
Meeting 1 – February 13, 2026
Facilitator: Fellyph Cintra
Announcements
Three posts worth highlighting from the past weeks:
- wp-env now runs WordPress with Playground runtime — WordPress Playground is now available in
wp-envas an alternative to Docker. - What’s new for developers? (February 2026) — A roundup of developer-focused updates from the beginning of the year, including several Playground highlights.
- WordPress Studio 1.7.0 received substantial CLICLI Command Line Interface. Terminal (Bash) in Mac, Command Prompt in Windows, or WP-CLI for WordPress. updates — nearly every feature is now controllable from the command line, improving compatibility with AI-assisted development tools such as Claude Code and Cursor.
Documentation
Three documentation pull requests landed since the last meeting:
- #3188 — Refreshes screenshots and rewrites content for the web instance page to reflect the latest UIUI UI is an acronym for User Interface - the layout of the page the user interacts with. Think ‘how are they doing that’ and less about what they are doing..
- #3242 — Updates the “Host Your Own Playground” self-hosting page with current instructions and improved clarity.
- #3103 — Adds a new beginner-friendly “Playground for Everyone” guide explaining what WordPress Playground is and how anyone can use it.
Translations
New translations were added for Bengali and Japanese. Thank you to @noruzzaman and @shimomura tomoki for their contributions.
- #3177 — Updates
translations.mdfor multiple languages. - #3249, #3230, #3229, #3231 — Bengali translations for several guides and documentation pages.
- #3228 — Japanese translations for developer architecture, PHPPHP PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML. https://www.php.net/manual/en/preface.php., and browser-concepts pages.
Other notable changes
- Website — A new URLURL A specific web address of a website or web page on the Internet, such as a website’s URL www.wordpress.org route enables deep-linking directly to the Blueprint Gallery overlay using the
?overlay=blueprintsparameter. - CLI — A new
--phpmyadminflag spins up a phpMyAdmin instance for inspecting and managing the SQLite database from the command line. - Blueprints — Removed an unnecessary dependency on
@php-wasm/webfrom the blueprints package, reducing bundle size and decoupling the two packages. - Safari — Multiple improvements shipped following community feedback shared on X.
In total, 32 pull requests were merged since the last meeting.
Updates from contributors
- Fellyph Cintra — Researching the migrationMigration Moving the code, database and media files for a website site from one server to another. Most typically done when changing hosting companies. of Playground documentation to the
.orgHandbook, documenting the process of integrating Playground with code agents, and submitting a new skill for blockBlock Block is the abstract term used to describe units of markup that, composed together, form the content or layout of a webpage using the WordPress editor. The idea combines concepts of what in the past may have achieved with shortcodes, custom HTML, and embed discovery into a single consistent API and user experience. pattern creation to the WordPress repository. - Brandon Payton — Continuing work on making multi-worker mode non-experimental in the Playground CLI, with expanded test coverage now running on Windows, macOS, and Linux.
- Jan Jakes (@janjakes) — Added phpMyAdmin support to the Playground CLI. Try it with
npx @wp-playground/cli@latest server --phpmyadmin. An overview post on the SQLite side is also coming soon. - Adam Zieliński — Working on importing WordPress sites between hosts, which will enable moving sites between Playground instances and hosted environments.
Open floor
Fellyph shared a demo of WordPress Playground used together with Claude Code and the DevTools MCP server, highlighting how Claude Code decides whether to fix code directly or use the Site Editor to fulfill requests. The team is curious to hear from the community: are you using Playground with code agents, and what has your experience been like?
If you are interested in contributing to the documentation migration to the .org Handbook, reach out to Fellyph directly via SlackSlack Slack is a Collaborative Group Chat Platform https://slack.com/. The WordPress community has its own Slack Channel at https://make.wordpress.org/chat/. DM.
Meeting 2 – February 27, 2026
Facilitator: Fellyph Cintra
Announcements
The team is currently investigating stability issues affecting WordPress Playground with WordPress 7.0 BetaBeta A pre-release of software that is given out to a large group of users to trial under real conditions. Beta versions have gone through alpha testing in-house and are generally fairly close in look, feel and function to the final product; however, design changes often occur as part of the process. and GutenbergGutenberg The Gutenberg project is the new Editor Interface for WordPress. The editor improves the process and experience of creating new content, making writing rich content much simpler. It uses ‘blocks’ to add richness rather than shortcodes, custom HTML etc. https://wordpress.org/gutenberg/ v22.6.0. Two related pull requests are in progress:
- #3312 — Avoids cross-origin policy errors in the editor.
- #3301 — Fixes a blank
/wp-adminpage caused by responses crossing the Comlink worker boundary.
Thanks to everyone who reported issues — your feedback helped with the investigation. More fixes are expected in the coming days.
Two posts were published this week:
- Simplify your workflow with the new Playground CLI start command
- Manage your database directly from the Playground CLI
WordPress 7.0 Beta 2 is now available for testing on WordPress Playground. If you encounter any issues, please report them on GitHubGitHub GitHub is a website that offers online implementation of git repositories that can easily be shared, copied and modified by other developers. Public repositories are free to host, private repositories require a paid subscription. GitHub introduced the concept of the ‘pull request’ where code changes done in branches by contributors can be reviewed and discussed before being merged by the repository owner. https://github.com/.
Project updates
22 pull requests have been merged since the last meeting. New feature work was paused to focus on WordPress 7.0 stability investigations.
CLI
- #3288 — Removes a duplicated “Playground CLI Ready” log line to keep startup output clean.
- #3238 — Detects “port already in use” errors and returns a clear, actionable message.
- #3150 — Fixes Windows native file-locking issues in the multi-threaded CLI architecture.
PHP.wasm
- #3287 — Adds PHP function names and refactors the test suite to improve coverage and maintainability.
- #3234 — Adds a
cp(copy) method to Universal PHP for file duplication via the PHP.wasm filesystem APIAPI An API or Application Programming Interface is a software intermediary that allows programs to interact with each other and share data in limited, clearly defined ways..
Translations
New translations were added for Bengali and Japanese. Thank you to @noruzzaman and @shimomura tomoki for their continued contributions.
Documentation
- A new guide is available: Using the WordPress Playground Agent Skill.
- Following feedback from the previous meeting,
CLAUDE.mdhas been migrated toAGENTS.md.
Updates from contributors
- Fellyph Cintra — Migrating the documentation to the
.orgHandbook, working on the Agent Skill guide and the two CLI posts. Started testing Playground with Claude Code and Gemini HooksHooks In WordPress theme and development, hooks are functions that can be applied to an action or a Filter in WordPress. Actions are functions performed when a certain event occurs in WordPress. Filters allow you to modify certain functions. Arguments used to hook both filters and actions look the same.; a post about it is coming soon. - Jan Jakes (@janjakes) — Improving the agentic experience and setup for Playground and SQLite integration, and investigating performance and memory consumption.
- Yannick Decat — Compiling PHP.wasm with
MAIN_MODULE=2to reduce.wasmand.jsfile sizes, and implementing path mappings and path skipping in Xdebug 3.5. Also experimenting with Xdebug in the browser. - Bero — Working on an MCP server for the Playground website, including WebMCP support.
- Adam Zieliński — The WordPress site migrator is working. Next steps include URL rewriting for cross-domain moves and Playground integration.
Open floor
The team discussed what tools would be most useful in an MCP server for Playground. If you have ideas, share them in the comments below or on the relevant GitHub pull requests.
The next Playground chat will be on March 10th in the #playground Slack channel. All are welcome to join.



