June has been a busy month for anyone keeping one eye on WordPress 7.0 and the other on what comes next. The final release is now out, Gutenberg 23.3 and 23.2 shipped with a wide mix of editor updates, and the first testing calls for WordPress 7.1 are already here.
WordPress 7.0 “Armstrong” landed on May 20, 2026. If you have not tested your plugins and themes against it yet, now is the time to do so. The WordPress 7.0 Field Guide is still the best place to start, especially if your work touches AI APIs, block registration, DataViews, block bindings, editor UI, design tools, or accessibility.
But let’s get into the new stuff. As usual, when testing features mentioned in these What’s new? posts, ensure that you’re running the latest version of WordPress and the latest version of the Gutenberg plugin. You can also test the latest updates via Playground.
Table of Contents
Highlights
Media editor modal is now the default crop experience
The media editor modal is now the default crop experience in Gutenberg 23.3. The workflow still starts from the familiar Crop button, but editing happens in a dedicated modal with freeform and aspect-ratio cropping, flip, rotation, zoom, and metadata editing.

If you missed the earlier Media Editor Modal call for testing, start there for the larger testing context. Follow-up work added aspect-ratio controls to the mobile toolbar, replaced the zoom slider with plus/minus buttons, refactored the modal layout, and improved sidebar and close-button behavior.
If your plugin customizes image editing or depends on image metadata, test this flow with real images, keyboard navigation, and touch interactions.
Client-side media processing is ready for testing
The client-side media processing call for testing is one of the more concrete testing calls this month. The feature uses a VIPS/WASM pipeline to generate image sub-sizes in the browser when possible, while falling back to server-side processing when needed.
This is worth testing if your plugin customizes uploads, works with image metadata, generates thumbnails, or supports newer formats. The call for testing specifically asks for feedback on AVIF, WebP, HEIC, Ultra HDR, JPEG XL, GIF-to-video conversion, large images, generated sub-sizes, and fallback behavior.
There are some important limits. The feature is currently active in Chromium browsers with the latest Gutenberg plugin, disabled by default in Firefox and Safari, skipped on devices with 2GB RAM or less, and bypassed for slow connections or restrictive worker-src Content Security Policy settings.
Collaborative editing outreach starts for 7.1
Real-time collaboration did not ship in WordPress 7.0, but the work has not gone quiet. A new collaborative editing outreach effort for 7.1 is now underway for people testing the latest Gutenberg plugin.
This is still something to test and follow, not something to build production workflows around yet. If your plugin stores editor state, uses meta boxes, modifies block editor data, or depends on save behavior, this is a good time to try the latest work and report anything that feels off.
Plugins & Tools
React 19 compatibility remains the big watch item
The React 19 upgrade dev note is still worth reading, even though the upgrade has been temporarily reverted in Gutenberg. It outlines the kinds of changes plugin authors should prepare for: moving away from render() and hydrate(), replacing unmountComponentAtNode(), avoiding findDOMNode(), checking ref callbacks, and reviewing TypeScript updates.
The temporary revert post explains what happened. Several plugins bundled React 18 JSX runtime helpers and crashed when loaded alongside React 19. The Core team plans to keep working toward React 19 for WordPress 7.1, but with a more incremental strategy.If your plugin ships compiled JSX, uses @wordpress/element, or reaches into private editor internals, this is the area to keep testing.
Abilities API refinements continue
The Abilities API has already been covered in previous roundups, but there has been a steady stream of follow-up work in Core. Recent changes include lifecycle filters for ability execution, input and output validation filters, filtering support for wp_get_abilities(), expanded site, user, and environment info responses, REST schema preparation hardening, and REST response keyword handling through keyword allow-listing and required keyword normalization. For a broader view of follow-up work, follow the Abilities API Trac query. If you are experimenting with abilities, it is worth checking the latest trunk behavior before leaning too hard on earlier assumptions.
PHP support labels get clearer
The PHP support clarification retires the old “beta support” label for PHP 8. WordPress 6.9 and 7.0 are now documented as fully supporting PHP 8.5.For plugin and theme authors, the practical takeaway is straightforward: the minimum supported PHP version is 7.4 as of WordPress 7.0, and the minimum recommended version remains PHP 8.3. If your docs, support replies, or CI jobs still treat newer PHP versions as experimental for WordPress, this is a good time to update them.
Unicode email support is open for feedback
A new proposal asks for feedback on extending Unicode support in email addresses, usernames, and slugs. This is not a shipped feature yet, but it could affect a lot of plugin code if it moves forward.The proposal touches functions like is_email(), sanitize_email(), and antispambot(), along with filters, database storage, normalization, and visually confusable characters. If your plugin validates, stores, masks, or compares email addresses, this is worth reading while feedback can still shape the approach.
AI Client image generation tutorial
The AI Client and Connectors API were covered in the April and May roundups, but there is now a practical tutorial on building an image generation plugin with the WordPress AI Client.

The most useful part is the feature-detection pattern. A plugin should check whether a provider is configured and whether it supports the capability the plugin needs before exposing the UI. The tutorial walks through that flow in the Media Library, from generating an image to saving it as an attachment.
Themes
Pseudo states on single block instances
Gutenberg 23.3 added support for pseudo-state styles on individual block instances. That means a single block can carry styles for states like :hover, :focus, or :visited without changing every instance of that block across the site.

The work landed in Add supports for pseudo states on single block instances and closes the long-running issue for a standardized way to modify interactive states for blocks. If you build themes with detailed button, link, or navigation states, this is worth testing in Gutenberg.
Responsive style states keep expanding
Responsive and state-aware styling continues to move forward across recent Gutenberg releases. Gutenberg 23.2 introduced responsive global block styles with states, and Gutenberg 23.3 adds layout responsive styles and UI changes that hide some controls when a style state is selected.

This is still an area to test in Gutenberg, but it is one theme authors should keep an eye on. The best follow-up is the open Responsive style states for blocks – iteration for WP 7.1 tracking issue, especially if your themes depend on theme.json presets and settings, layout presets, block supports, or custom responsive controls.
More theme-facing block updates
Several smaller changes are worth noting if your theme customizes editor controls, navigation, or front-end block output. Global Styles now integrates slug-based color selection in the color panel, the Home Link block gained missing controls, the Breadcrumbs block hides visual separators from screen readers, Navigation restores block_core_navigation_submenu_render_submenu_icon() as a deprecated shim, and the Image block avoids squished output when only one dimension is set.
Author link title attributes have changed
WordPress 7.0 removed the default “Posts by Author” title attributes from author post links and from links generated by wp_list_authors(). The Core dev note explains the change and shows how to customize the text if you intentionally need it.
This is a small markup change, but it can still matter for themes and tests that compare author-link output.
Playground
Playground had enough late-month updates for its own section this time around. The best starting point is the recent run of Make/Playground posts, especially the new posts on the Playground CLI, PR previews, and PHP snippets.
wp-now is deprecated in favor of Playground CLI
The most immediate change is that wp-now is deprecated. If you still use wp-now for quick local WordPress environments, it is time to move to the Playground CLI.
The post explains that the CLI is now the recommended path for local Playground workflows. That should make the migration fairly direct for plugin and theme developers who used wp-now as a fast way to spin up test sites.
PR previews and PHP snippets get official guides
There are also two new Make/Playground posts that are useful for docs and review workflows. PR Preview with WordPress Playground: What changes in version 3 of the GitHub Action covers the latest version of the PR preview action, which is worth reviewing if your project uses Playground previews for pull requests.
The team also published Run PHP examples anywhere with WordPress Playground, which walks through embedding runnable PHP examples with Playground snippets. This is a good one to bookmark if you write developer docs or tutorials and want examples that readers can run in the browser.
Saved Playgrounds and Sites API work
Playground shipped v3.1.35 and v3.1.36 within the last month. The most useful developer-facing thread is the continued work around saved sites and the Sites API.
Recent updates include the new Sites API documentation, active-site readiness work, saved-site creation APIs, autosave restore UX, and changes that avoid autosave prompts in embedded Playground instances.
If you use Playground for demos, support, docs, or testing, this is the set of changes to watch. Saved browser-based WordPress sites are becoming more like something you can return to, rather than a throwaway session.
That persistence work also pairs well with Playground’s growing support for older WordPress versions. You can now load historical versions such as WordPress 0.7 in Playground, and the Virtual WordPress Museum is a useful demo of that idea in action.
PHP.wasm extension work
There has also been a cluster of PHP.wasm work that is worth watching if you build advanced demos, browser-based tooling, or documentation examples. Playground continues to improve PHP-next builds, PHP side modules, extension usage, and runtime compatibility.
The new Running PHP Frameworks in Playground guide shows how far the runtime can stretch beyond basic WordPress examples, and the @php-wasm/compile-extension workflow points to a more capable extension story.
User-facing changes
Dashboard experiment gets more widgets
The customizable dashboard remains experimental, but it is starting to feel more concrete. Gutenberg 23.3 highlights five new widgets and more layout polish. Recent PRs also added Site Health, News, Events, Quick Draft, a site preview/URL bar, ghost widgets, size presets, and container-breakpoint grid columns.

This is not a stable admin extension API yet. But if you build dashboard experiences or plugin-owned admin screens, it is worth keeping an eye on where the experiment is heading. The customizable dashboard overview issue is the best place to get up to speed.
Accessibility polish across editor and admin screens
Accessibility work continued in both Gutenberg and Core. Gutenberg 23.3 includes revisions improvements, and follow-up work fixed Font Library focus navigation. Core trunk includes admin color-scheme contrast improvements for editor chrome, frontend toolbar focus outline fixes, and button active-state fixes in high contrast mode.
If you ship custom admin screens, editor panels, media workflows, or design-system extensions, include keyboard navigation, high contrast mode, larger text settings, and non-default admin color schemes in your next testing pass.
Resources
Developer Blog
One new tutorial was published on the Developer Blog in the past month:
General
There are also a few other noteworthy posts from official WordPress blogs to read if you haven’t already done so:
- Accessibility Improvements in WordPress 7.0
- Commence: Operation WP 7.1
- WordPress 7.1 Call for Volunteers
- React 19 upgrade temporarily reverted in Gutenberg
Never want to miss an article again? Subscribe to the WordPress Developer Blog.
Props to @bph and @greenshady for reviewing this article.
Leave a Reply