WordPress 7.0 AI updates: what’s shipping in Beta 2

The AI Contributor Group just wrapped up their latest session, and it’s clear that the WordPress 7.0 AI Updates are hitting that critical “pre-release” crunch. Beta 2 is on the horizon, and while the roadmap looks promising, we’re seeing some tactical retreats in core development to ensure the platform doesn’t ship a broken mess.

If you’ve been around the block, you know release candidates (RC) wait for no one. The team is shifting resources away from the experimental “Abilities API” to focus on the UI that actually connects your site to the major LLM providers. It’s a pragmatic move: get the plumbing right before you start adding the fancy fixtures.

Beta 2 and the Abilities API pivot

Beta 2 is officially on track for February 26th. The development of new core “Abilities” has been paused, though. This might sound like a setback, but it’s actually a win for stability: the focus has moved entirely toward the Connector Screen and the AI client to meet RC deadlines. Nested namespaces have also officially landed in Beta, which is a major cleanup for anyone building deep integrations.

I’ve seen this happen in dozens of core cycles: a feature is too ambitious for the current window, so it gets shelved for a minor release. For more context on why these delays happen, check out my deep dive on why the WordPress 7.0 release changes everything for core developers.

The new Connector Screen: unified AI management

The standout feature for the average user in the WordPress 7.0 AI Updates is the new Connector Screen. The goal is dead simple: a single interface to install and connect Google, OpenAI, and Anthropic with a one-button setup and an API key. No more fragmented settings screens buried in three different plugin menus.

The team is debating an “Experimental API” for this screen that would let third-party developers register their own connectors directly into the Core UI. That’s meant to head off the “fragmentation hell” we usually see when a new API drops in WordPress.

// Hypothetical usage of the experimental connector registration
// This is what the team is currently hashing out in Gutenberg.

function bbioon_register_custom_ai_connector() {
    if ( ! function_exists( 'register_ai_provider_connector' ) ) {
        return;
    }

    register_ai_provider_connector( 'my-custom-provider', array(
        'label'       => __( 'DeepSeek Custom', 'text-domain' ),
        'icon'        => 'cloud-upload',
        'auth_method' => 'api_key',
        'endpoint'    => 'https://api.deepseek.com/v1',
    ) );
}
add_action( 'init', 'bbioon_register_custom_ai_connector' );

Dependency headaches in the AI Experiments plugin

Dependency management is the messy part. The AI Experiments plugin is currently causing “double testing” headaches because it often pulls in older versions of the AI client than what’s now in Core. It’s a classic race condition: the experiment is trailing the product it’s supposed to be testing.

A new PR is currently up to update the Experiments plugin to the latest WordPress AI client. It’s a “stop-gap” for users still on WordPress 6.9 while the ecosystem prepares for 7.0 to become the new minimum version. If you’re integrating LLMs now, read up on the roadmap for core LLMs to avoid building on deprecated logic.

WordCamp Asia’s Contributor Day

WordCamp Asia’s Contributor Day is next up. The focus there isn’t just on “handing out badges”: the group is defining actionable tasks, including testing, handbook updates, and adapter development, so the community is ready to support 7.0 when it ships. Expect a flurry of documentation and “calls for experiments” in the coming weeks.

If this WordPress 7.0 AI Updates stuff is eating into your dev hours, I can take it off your plate. I’ve been wrestling with WordPress since the 4.x days.

What this means for WordPress 7.0

WordPress 7.0’s AI work is messy, technical, and full of pivots, but that’s how solid software gets built. Pausing the high-level “Abilities” and focusing on the underlying “Connectors” gives the Core team a stable foundation to build on. Watch for the Beta 2 release on the 26th: it’ll show what actually makes it into 7.0.

author avatar
Ahmad Wael
I'm a WordPress and WooCommerce developer with 15+ years of experience building custom e-commerce solutions and plugins. I specialize in PHP development, following WordPress coding standards to deliver clean, maintainable code. Currently, I'm exploring AI and e-commerce by building multi-agent systems and SaaS products that integrate technologies like Google Gemini API with WordPress platforms, approaching every project with a commitment to performance, security, and exceptional user experience.