WordPress 7.0 "Armstrong" shipped on May 20, 2026. After years of incremental block editor improvements, this release does something genuinely new: it bakes AI directly into the WordPress core through three new APIs.
For plugin developers, the WP 7.0 field guide is mandatory reading. For store owners, a different question matters: does WordPress 7.0 mean you no longer need a separate AI search plugin?
The short answer is no — and the longer answer explains why specialized AI search and the new WordPress 7.0 AI infrastructure operate on completely different architectural layers. They aren't in competition; they're designed to complement each other.
This post breaks down exactly what shipped in WordPress 7.0, what it does (and does not) do for search, and how Queryra fits into the new ecosystem as an Abilities-aware plugin.
Full disclosure: I'm the founder of Queryra. The framing here positions Queryra as complementary to WP 7.0 — because that's what the architecture actually shows. If WP 7.0 made specialized search plugins obsolete, I'd say so.
The Three New APIs in WordPress 7.0
Three new APIs in WordPress 7.0 form the new AI infrastructure layer. Understanding what each one does is the prerequisite for any honest comparison with search plugins.
WP AI Client. A provider-agnostic interface for sending prompts to large language models. The same plugin code can route a prompt to OpenAI's GPT-4.1, Google's Gemini, or Anthropic's Claude — without changing the calling code. WP AI Client handles the differences in request format, response parsing, and error handling between providers. It's effectively a router.
What it does: send text → receive text.
What it doesn't do: index your content, build a vector database, perform semantic similarity search.
Abilities API. A registration system where plugins and themes can declare their capabilities to AI agents. A plugin like WooCommerce might register an ability called "create_product" with a schema for the parameters. An AI agent — running in the dashboard or through a third-party integration — can discover these abilities and call them as tools. It's how WordPress is becoming agent-friendly.
What it does: let plugins expose typed capabilities to AI agents.
What it doesn't do: provide search functionality on its own.
Connectors API. A unified credential management system. Instead of every plugin asking the user for their own OpenAI key, plugins request access through Connectors. Users see one centralized list of connected services in the WordPress dashboard, plugins receive scoped tokens, and key rotation happens in one place.
What it does: centralize API key management.
What it doesn't do: provide AI capabilities itself — it's pure plumbing.
Notice the pattern: all three are infrastructure. None of them provide search out of the box. WordPress 7.0 made it dramatically easier for plugins to use AI — but the plugins still have to do the actual work.
"Doesn't This Mean I Don't Need a Search Plugin Anymore?"
The most common question I've received since the WP 7.0 announcement: does this mean I can just ask the LLM "find me red dresses under $50" and it works?
The honest answer is: that's not what WP AI Client does, and that's not how search works.
What WP AI Client can do: call an LLM with a prompt like "rewrite this product description in a friendlier tone" and return the result. Useful for content generation, summaries, classifications, and similar text transformations.
What WP AI Client cannot do: look at your 800 products and return the 12 most relevant to a customer's query. LLMs don't have your product catalog in their context. Even if you stuffed all your products into the prompt, you'd hit token limits within a few dozen products — and the cost per search would be unsustainable (the cost difference is orders of magnitude — typical estimates range from $0.10+ per LLM-routed search to fractions of a cent for a direct vector lookup).
This is exactly the problem vector search solves. Vector embeddings convert each product into a numerical fingerprint that captures meaning. A search engine like Queryra stores these fingerprints in an index (ChromaDB), then finds the closest matches to a query's fingerprint in milliseconds — regardless of how many products you have.
WP AI Client is a router for LLM prompts. Queryra is a search engine over your content. Same word "AI," fundamentally different problems.
The closest WP 7.0 comes to search is letting you describe a query in natural language and route it to an LLM — which then has no way to look at your actual products. You still need an index. You still need embeddings. You still need a vector store. WordPress 7.0 didn't ship any of those.
Native WP 7.0 AI vs Specialized Search — What Each Layer Provides
Here's a structured comparison of what each layer provides:
WordPress 7.0 native AI (WP AI Client + Abilities + Connectors):
- LLM access (OpenAI, Gemini, Claude routing)
- Centralized API key management
- Plugin capability registry for AI agents
- Foundation for AI-powered features inside plugins
- Does NOT provide: vector embeddings, semantic search index, product matching, multilingual semantic understanding
Specialized AI search (Queryra):
- Vector embeddings for products, posts, pages
- ChromaDB-backed semantic similarity search
- Intent-aware query parsing (price filters, brand exclusions extracted from natural language)
- Multilingual native — single index across 50+ languages
- WooCommerce-optimized result ranking
- Off-site infrastructure — zero performance impact on your WordPress server
- Does NOT provide: general LLM access, capability registration for other plugins
Different problem spaces. WP 7.0 is infrastructure for LLM access. Queryra is specialized search infrastructure.
The two are designed to work together. WP 7.0 standardizes how plugins talk to LLMs. Queryra uses its own embedding pipeline (because LLMs don't produce embeddings — embedding models do that, and they're a separate API). But Queryra can register as an "Ability" so AI agents discover semantic search as a tool they can call.
How Queryra Integrates with WordPress 7.0
The Abilities API is where the integration story gets interesting. WordPress 7.0 lets plugins register typed capabilities — including, in principle, "search my content semantically."
Here's what an Abilities registration might look like for Queryra:
