WordPress 7.1 is not just shaping up as another editor release with a few AI hooks bolted on. The quiet thing worth watching is a planned Guidelines feature: a persistent place inside WordPress for editorial rules, brand voice, content standards, and block-specific guidance.
That sounds like a writing feature. It is more useful to treat it as operations.
Most teams already have content rules. They live in Google Docs, onboarding notes, Slack threads, SEO checklists, agency handoff decks, and the head of the one editor who remembers why the H2s are supposed to be written a certain way. Humans can limp along with that arrangement because humans can ask around. AI tools are much worse at it. They either ignore the standard, rely on whatever prompt someone remembered to paste, or learn the wrong thing from old content.
The WordPress project appears to be moving toward a better answer: put the site’s editorial intent where the publishing system can see it.
The actual feature is still in motion
The source to start with is the WordPress 7.1 roadmap, published on June 19, 2026 and last modified June 25. It says WordPress 7.1 is targeted for August 19, 2026, while also warning that roadmap items are actively pursued rather than guaranteed for final release.
Under the AI section, the roadmap describes Guidelines as a feature that lets site owners define writing and content guidelines that tie into AI tooling. It specifically calls out import and export between sites, a persistent structured system, editorial rules, brand voice, and content standards “for humans and AI alike.”
The Gutenberg tracking issue is even clearer about the problem statement. It says site owners currently lack a standardized way to define editorial identity, content rules, and brand voice in a machine-readable format. The proposed solution is “Content Guidelines” as an experimental Gutenberg feature: settings-based categories for copy, images, site context, block-specific rules, and custom needs; storage as a custom post type with revision history; REST API exposure; PHP filters; and JSON import/export.
That architecture matters more than the UI mockups. A style guide in a document is reference material. A style guide in WordPress, exposed through APIs, is infrastructure.
Why this matters to operators
AI writing tools usually fail in boring ways before they fail in dramatic ones.
They do not necessarily invent a scandal. They drift tone. They flatten the site’s personality. They forget image alt-text standards. They overuse headings. They produce paragraphs that are technically fine but wrong for the publication. They cite the wrong class of source because the instruction was buried outside the workflow. They make every site sound like the same SaaS landing page wearing a different hat.
That is not mostly a model problem. It is a controls problem.
If WordPress gives publishers a native place to express editorial rules, those rules can become part of repeatable publishing operations:
- an editor can revise the rules and keep revision history;
- a multisite operator can export and import rules across properties;
- a plugin can read the same rules an editor sees;
- an AI assistant can be evaluated against the site’s actual standards instead of a prompt pasted into one session;
- block-level guidance can meet writers where they are working, not after the article is already drafted.
The immediate value is consistency. The longer-term value is auditability.
For small publishers, that means fewer one-off prompt rituals. For agencies, it means fewer brand voice PDFs that nobody opens after launch. For newsrooms and nonprofit teams, it means the editorial system can carry institutional rules even when contributors rotate. For technical sites, it means a place to encode rules like “prefer primary sources,” “do not cite vendor benchmarks without context,” “show prerequisites before recommendations,” or “never publish security severity claims without the original advisory.”
That is content governance, not content decoration.
It fits the larger WordPress AI direction
Guidelines are not arriving in isolation. WordPress 7.0 introduced the AI Client, a provider-agnostic PHP API that lets plugins send prompts to configured AI providers through a consistent interface. The dev note for that API is careful about feature detection: not every site has an AI provider configured, and not every provider supports every capability. Plugin authors are expected to check support before showing AI-powered UI.
For WordPress 7.1, the Core AI team says the AI Client work is continuing with generation streaming and embeddings. Streaming is being introduced first in the PHP AI Client because long-running requests are hard in typical WordPress hosting environments. Embeddings are being explored to support meaning-based search across site content. A related WordPress AI plugin pull request describes an opt-in RAG search experiment gated on supporting infrastructure, including MariaDB vector support and an authenticated connector.
Put those pieces together and the shape becomes more interesting:
- Abilities describe what a site can do.
- Connectors describe how the site reaches external AI services.
- The AI Client gives plugins a common way to request AI work.
- Embeddings may make site content easier to retrieve by meaning.
- Guidelines describe how the site’s content should be created.
That is not a single magic feature. It is a stack.
And stacks need operating rules.
The risk is pretending guidelines are enough
Guidelines will not make bad AI output good by themselves. They also will not solve source quality, copyright, privacy, legal review, accessibility, or editorial judgment. A machine-readable standard is only useful if it is specific enough to constrain behavior and maintained enough to stay true.
There is also a governance question. If guidelines can be read through APIs and used by AI plugins, site owners need to know which users can edit them, which plugins can consume them, how changes are reviewed, and whether exports accidentally carry private internal rules to a new site. The Gutenberg proposal mentions revisions, REST exposure, filters, and import/export. Those are useful primitives, but they also make permissions and review discipline more important.
The right mental model is not “AI now knows our voice.” The right mental model is “we now have another piece of operational state that needs ownership.”
That means a serious site should eventually treat guidelines like it treats templates, SEO defaults, redirects, analytics events, and security settings:
- assign an owner;
- keep changes reviewable;
- separate public voice rules from private operational instructions;
- test the rules against real drafts;
- document which plugins consume them;
- export them deliberately, not casually.
The boring checklist is the point.
What to do before WordPress 7.1 lands
Nobody needs to wait for final release to prepare. The useful work is mostly editorial plumbing.
First, gather the rules that already exist. Pull together the tone notes, SEO rules, accessibility standards, source preferences, image requirements, and formatting habits that actually guide publishing. Kill contradictions. If one document says “short punchy paragraphs” and another says “academic depth,” decide where each applies.
Second, separate durable rules from campaign preferences. A durable rule says “security claims need primary sources.” A campaign preference says “use this product phrase this quarter.” Mixing them makes automation brittle.
Third, write rules in testable language. “Sound authoritative” is mush. “State the practical consequence before the recommendation” is usable. “Do not use a vendor blog as the sole source for a vulnerability claim” is usable. “Every generated image needs alt text that describes the information, not the vibe” is usable.
Fourth, map rules to blocks and workflow points. Heading structure, image captions, excerpts, source sections, and calls to action are not the same problem. If WordPress supports block-specific guidance, the teams that benefit most will be the ones that already know which rules belong where.
Finally, keep humans in the loop where judgment matters. Guidelines can make AI-assisted publishing less chaotic. They cannot decide whether a weak claim deserves to be published.
The CyganLabs read
The under-covered part of WordPress AI is not whether the editor gets a chatbot. The better question is whether WordPress becomes a credible operating environment for AI-assisted publishing without giving up the boring controls that make publishing trustworthy.
Guidelines point in that direction. They take something squishy, the “voice” and standards of a site, and give it a chance to become structured, portable, reviewable operational state. That will not be flashy. It will be useful.
If WordPress gets this right, the future of AI writing in WordPress will look less like a prompt box and more like a well-run editorial system: clear rules, explicit permissions, portable standards, visible review, and tools that are forced to respect the way the site actually works.
That is the version worth building toward.
Sources
- WordPress Make/Core, “Roadmap to 7.1,” published June 19, 2026, last modified June 25, 2026: https://make.wordpress.org/core/2026/06/19/roadmap-to-7-1/
- WordPress/Gutenberg issue #75171, “Add experimental Content Guidelines for site-wide editorial rules”: https://github.com/WordPress/gutenberg/issues/75171
- WordPress Make/AI, “What’s coming to the AI Client in WP 7.1,” published June 19, 2026: https://make.wordpress.org/ai/2026/06/19/whats-coming-to-the-ai-client-in-wp-7-1/
- WordPress Make/Core, “Introducing the AI Client in WordPress 7.0,” published March 24, 2026: https://make.wordpress.org/core/2026/03/24/introducing-the-ai-client-in-wordpress-7-0/
- WordPress Developer Resources, “Abilities API,” published December 3, 2025: https://developer.wordpress.org/apis/abilities-api/
- WordPress/AI pull request #683, “Add native vector search”: https://github.com/WordPress/ai/pull/683