Skip to main content
Home
GrN.dk

Main navigation

  • Articles
  • Cases
  • Services
  • Your Digital Project Manager
  • About Greg Nowak
  • Image Gallery
  • Contact
User account menu
  • Log in

Join my community / free newsletter — sign up here

Breadcrumb

  1. Home

WordPress 7.0's React 19 Upgrade Makes Custom Block QA a Paid Compatibility Job

Illustrated infographic summarizing: WordPress 7.0's React 19 Upgrade Makes Custom Block QA a Paid Compatibility Job

WordPress 7.0 shipped on May 20, 2026. A week later, on May 27, the core team published its React 19 upgrade note for WordPress developers. That timing matters. The release itself focuses on a stronger admin experience and a broader developer toolbox. The React note, meanwhile, tells a more practical story for teams with custom editor or admin code: another compatibility checkpoint is already on the horizon.

The important detail is easy to blur if you only skim the headlines. The official note does not say React 19 is part of WordPress 7.0 core. It says the upgrade will land in the Gutenberg plugin first after the 7.0 release and is targeted for WordPress 7.1, specifically so plugin and theme developers get a full release cycle to test. For any business relying on custom blocks, plugin settings screens, or embedded admin apps, that turns this into a real QA window, not a vague future concern.

Why this is more than routine update testing

The React 19 migration note is fairly direct about where problems can show up. APIs such as render, hydrate, and unmountComponentAtNode are removed, with createRoot, hydrateRoot, and root.unmount taking their place. It also notes that findDOMNode is removed from React 19 itself, even though WordPress will keep exporting a polyfill from @wordpress/element to help with the transition. That is the sort of nuance that can keep old code limping along just long enough to hide technical debt until the wrong update lands.

Some of the risk is less obvious than a hard crash. The note also calls out behavior changes that can slip past casual manual testing. The inert attribute is now boolean rather than string-based. Ref callbacks can be interpreted as cleanup functions if they return a value. forwardRef still works, but it is described as deprecated because function components can now accept ref as a regular prop. TypeScript teams also have more to check than runtime behavior alone: ref typing changes, ReactElement props now resolve to unknown instead of any, and prop collisions with native HTML attributes may start surfacing as type errors.

None of that means every WordPress site is about to break. It does mean there are specific places worth reviewing now. In practice, the highest-risk areas are usually custom blocks, bespoke sidebar controls, plugin option pages, and admin interfaces that mount React trees manually. The official guidance supports that approach. Developers are told to test major features, pay attention to code using removed APIs, inspect the browser console for warnings and errors, and include iframe interactions because that area has seen subtle behavior changes.

The May 2026 timing has real commercial consequences

The wider WordPress messaging in May 2026 points in the same direction. Earlier in the month, the official developer roundup said WordPress 7.0 was approaching quickly, confirmed the May 20, 2026 release date, and told plugin and theme developers to test against 7.0 if they had not already done so. So testing was already on the table before the React 19 note arrived. The May 27 dev note simply narrowed the next risk area from general release readiness to a very specific JavaScript compatibility track.

The WordPress 7.0 release post adds useful context here. It highlights a modernized dashboard, new blocks and design tools, and a larger developer toolbox with broader APIs and enhanced functionality. That is good news for site owners and editors. It also means that if your business has invested in custom integrations, the surface area that can be affected by a platform upgrade keeps expanding. More capability in core usually means more places where bespoke code needs to stay aligned.

That is why custom block QA is a paid compatibility job. The work is not just opening a few screens and confirming the site still loads. It is identifying where custom code depends on @wordpress/element behavior, spotting deprecated patterns that are now moving closer to removal or stricter enforcement, reproducing failures in a clean environment, and deciding what needs fixing before the next release cycle makes those issues urgent. That takes engineering judgment.

What a sensible compatibility workflow looks like

The official React 19 guidance gives a practical starting point. Test against the Gutenberg release that includes React 19 instead of waiting for the next core release. Enable SCRIPT_DEBUG so warnings and errors are visible. Exercise the main plugin or theme features rather than relying on page-load checks. Inspect the browser console because React 19 improves error reporting and may surface issues that previously stayed quiet. If your setup uses iframes anywhere in the editor or admin, include those flows explicitly.

From there, the work becomes more targeted. The useful questions are not abstract. Where are React trees mounted manually? Which blocks or admin screens still rely on render or hydrate? Are any function components still using defaultProps? Do any custom refs return a value unintentionally? Are TypeScript builds hiding problems that will become visible during the upgrade? Those are the kinds of issues worth finding while React 19 is still in Gutenberg rather than after it rolls into a production core update.

For local reproduction, the Playwright tutorial from the WordPress Developer Blog is helpful because it stays grounded in WordPress tooling. It points to wp-env as a solid local environment choice because it reduces setup friction, is maintained by the WordPress project, and works well with the surrounding toolchain. The same tutorial also states that WordPress uses Playwright for end-to-end testing and that Playwright-based packages are the right direction for new projects.

Why Playwright smoke tests are the right deliverable

The Playwright article is useful partly because it sets sensible expectations. End-to-end tests are macro-level tests that verify how multiple layers work together, but they are slower and sometimes more fragile than unit tests. The article explicitly says they are best used for critical user flows rather than every possible scenario. That lines up well with compatibility work. The goal is not to build an enormous test suite. It is to cover the few paths that would be genuinely expensive to discover broken after an update.

For a WordPress business with custom functionality, those smoke tests are usually fairly concrete. Can an editor open the block editor, insert the custom block, configure it, and save? Can an administrator load the plugin settings screen, change an option, and persist it? Can a custom admin interface load without console failures? If an iframe-based tool is involved, does it still communicate properly? Those are the flows most likely to catch a costly regression early.

The tutorial also makes another business point clear. WordPress-specific helpers already exist for this work. Using the official Playwright utilities and the default configuration exposed by wp-scripts cuts down on unnecessary custom harness code. Clients should be paying for compatibility insight, risk reduction, and maintainable safeguards, not for rebuilding tooling that the platform already provides.

What GrN.dk can actually help with

If you are running custom WordPress blocks or admin interfaces, the opportunity right now is straightforward. Use the gap between the WordPress 7.0 release and the React 19 arrival in Gutenberg and WordPress 7.1 to make the upgrade path predictable. That usually means auditing the custom JavaScript surface area, reproducing failures locally, replacing deprecated or incompatible patterns, and adding a small set of Playwright smoke tests around the business-critical flows that cannot quietly break.

That is the practical service here. Greg can review custom blocks and admin UIs, patch the patterns most likely to cause trouble, and leave you with a compatibility test layer that makes future WordPress updates less of a blind gamble. The WordPress guidance already says to test early. The commercial value is turning that advice into a focused piece of engineering work before the next release cycle turns it into emergency debugging.

Need help with this kind of work?

Book a WordPress compatibility audit before the next Gutenberg or core update turns QA into emergency debugging. Get in touch with Greg.

Sources

  • WordPress 7.0 “Armstrong” – WordPress News
  • React 19 Upgrade in WordPress – Make WordPress Core
  • What’s new for developers? (May 2026) – WordPress Developer Blog
  • Getting started writing WordPress E2E Tests with Playwright – WordPress Developer Blog
Last modified
2026-07-17

Tags

  • wordpress
  • React 19
  • upgrade testing
  • compatibility

Review Greg on Google

Greg Nowak Google Reviews

 

Written recommendations from Trafik og Veje, Aarhus Municipality (2011) and AgroTech (2010) — read them on LinkedIn.

Illustrated infographic summarizing: Zero Data Retention Is a Workflow Audit, Not a Checkbox
Zero Data Retention Is a Workflow Audit, Not a Checkbox
2026-08-30

Zero Data Retention covers the provider, not every copy in your stack. See how to audit endpoints, logs, storage, deletion and project-level controls.

Illustrated infographic summarizing: MCP 2026-07-28 Is an Auth Migration, Not a Version Bump
MCP 2026-07-28 Is an Auth Migration, Not a Version Bump
2026-08-29

MCP’s July 2026 release removes protocol sessions and tightens OAuth. Here’s a practical plan for migrating clients, servers and enterprise access safely.

Illustrated infographic summarizing: Turn a Technician’s Voice Note into a Work Order—Not Raw Audio
Turn a Technician’s Voice Note into a Work Order—Not Raw Audio
2026-08-28

Voice input can reduce the technician’s documentation burden when hours, materials and status are validated before the information is saved in the work order system.

Illustrated infographic summarizing: ChatGPT Disabled Personal Knowledge Sync. What Broke on Your Team?
ChatGPT Disabled Personal Knowledge Sync. What Broke on Your Team?
2026-08-27

ChatGPT retired personal sync connections for Enterprise and Edu. Here is how to find affected workflows, migrate access, and test permissions.

Illustrated infographic summarizing: Cloudflare’s September Bot Defaults Could Quietly Cut AI Visibility
Cloudflare’s September Bot Defaults Could Quietly Cut AI Visibility
2026-08-26

Cloudflare’s September bot defaults give publishers more control, but one training block could also cut search crawling and AI-driven discovery.

Illustrated infographic summarizing: Does Your AI Chatbot Clearly Identify Itself?
Does Your AI Chatbot Clearly Identify Itself?
2026-08-25

The EU’s transparency requirements for AI chatbots now apply. Here is how to make your bot’s identity clear, limit its system access and provide a genuine route to a member of staff.

Illustrated infographic summarizing: Should publishers add Google’s new Preferred Sources button?
Should publishers add Google’s new Preferred Sources button?
2026-08-24

Google’s Preferred Sources button is worth a controlled test for eligible publishers, with careful choices around placement, performance and measurement.

Illustrated infographic summarizing: Search Console Can See TikTok Now. Your Reporting Has to Catch Up
Search Console Can See TikTok Now. Your Reporting Has to Catch Up
2026-08-23

Google can now report how social profiles appear in Search. Here is how to measure cross-channel discovery without mistaking visibility for business results.

Illustrated infographic summarizing: Your AI workflow has logs. Can they explain one bad decision?
Your AI workflow has logs. Can they explain one bad decision?
2026-08-22

Logs can show that every service worked while leaving a bad AI decision unexplained. See how connected traces and careful redaction close the gap.

Illustrated infographic summarizing: Security Questionnaires Eat Into Selling Time—Let AI Find the Evidence
Security Questionnaires Eat Into Selling Time—Let AI Find the Evidence
2026-08-21

NIS 2 is generating more supplier questionnaires. A controlled AI assistant can find approved answers and sources—and route uncertain cases for review.

More articles

Built by AI — available for your business. The daily articles on this site are researched, written and illustrated by an autonomous AI pipeline. At nowa.dk I install the same kind of AI automation in businesses at fixed prices — site in Danish, English version here, and web/marketing agencies have a dedicated page.

RSS feed

Footer

  • All articles
  • Contact

GrN.dk — AI automation, web platforms, web optimization, data handling and logistics.

© 2026 GrN.dk · LinkedIn · Contact · AI automation in Danish: nowa.dk

Behind GrN.dk: Individual Entrepreneur Codecrafter · Tax ID 305669096 · Bakhtrioni St. 22, 0194 Tbilisi, Georgia · official business register