AI
The AI plugin brings AI-powered features directly into your WordPress admin and editing experience. What’s Inside: This plugin is built on the AI Building Blocks for WordPress initiative, combining the AI Client library and Abilities API into a unified experience. It serves as both a practical tool for content creators and a reference implementation for developers. Current Features: Abilities Explorer – Browse and interact with registered AI abilities from a dedicated admin screen. AI Request Logging – Logs AI requests for observability and debugging. Alt Text Generation – Generate descriptive alt text for images to improve accessibility. Comment Moderation – Automatically moderate comments based on toxicity detection and sentiment analysis. Connector Approvals – Require explicit administrator approval before plugins or themes can use AI connectors configured on this site. Content Classification – Suggests relevant tags and categories to organize content. Content Resizing – Shorten, expand, or rephrase selected block content. Content Summarization – Summarizes long-form content into digestible overviews. Dashboard Widgets – AI Status and AI Capabilities widgets, plus framework for registering new ones. Editorial Notes – Reviews post content block-by-block and adds Notes with suggestions for Accessibility, Readability, Grammar, and SEO. Editorial Updates – Automatically apply editorial notes to content. Excerpt Generation – Automatically create concise summaries for your posts. Experiment Framework – Opt-in system that lets you enable only the AI features you want to use. Guidelines – Allows abilities to respect site-wide editorial standards. Image Generation and Editing – Create and edit images from post content in the editor, also via the Media Library. Meta Description Generation – Generates meta description suggestions and integrates those with various SEO plugins. Multi-Provider Support – Works with AI Connector plugins for providers such as OpenAI, Google, and Anthropic. Title Generation – Generate title suggestions for your posts with a single click. Perfect for brainstorming headlines or finding the right tone for your content. Provider Setup: The AI plugin does not include provider credentials or provider implementations by itself. To use AI-powered features, install and activate at least one AI Connector plugin, then configure its credentials in Settings -> Connectors. Features may appear unavailable until a connector is installed, authenticated, and capable of the required operation. Provider connector plugins include Anthropic, Google, OpenAI, and others. Coming Soon: We’re actively developing new features to enhance your WordPress workflow: Type Ahead – Contextual type-ahead assistance for suggestions while typing. AI Playground – Experiment with different AI models and providers. Content Assistant – AI-powered writing and editing in Gutenberg. Site Agent – Natural language WordPress administration. Workflow Automation – AI-driven task automation. This is an experimental plugin; functionality may change as we gather feedback from the community. Roadmap: You can view the active plugin roadmap in a filtered view in the WordPress AI GitHub Project Board. For Developers The AI plugin is designed to be studied, extended, and built upon. Whether you’re a plugin developer, agency, or hosting provider, here’s what you can do: Extend the Plugin: Build Custom Experiments – Use the Abstract_Feature base class to create your own AI-powered features. Pre-configure Providers – Hosts and agencies can set up AI Connector plugins so users don’t need their own API keys. Abilities Explorer – Test and explore registered AI abilities (available when experiments are enabled). Register Custom Abilities – Hook into the Abilities API to add new AI capabilities. Override Default Behavior – Use filters to customize prompts, responses, and UI elements. Comprehensive Hooks – Filters and actions throughout the codebase for customization. Developer Tools Coming Soon: AI Playground – Experiment with different AI models and prompts. MCP (Model Context Protocol) – Integrate and test Model Context Protocol capabilities in WordPress workflows. Extended Providers – Support for experimenting with additional or alternate AI providers. Get Started: Read the Contributing Guide for development setup Join the conversation in #core-ai on WordPress Slack Browse the GitHub repository to see how experiments are built Participate in discussions on how best the plugin should iterate. We welcome contributions! Whether you want to build new experiments, improve existing features, or help with documentation, check out our GitHub repository to get involved.
Top keywords
- ai23×3.50%
- content12×1.83%
- abilities8×1.22%
- wordpress7×1.07%
- connector6×0.91%
- generation5×0.76%
- provider5×0.76%
- providers5×0.76%
- ai-powered4×0.61%
- editorial4×0.61%
- experiments4×0.61%
- suggestions4×0.61%
Vercel AI Gateway Provider
This plugin allows your WordPress site to connect to the Vercel AI Gateway. It enables your WordPress site to use hundreds of generative AI models from over 40 different providers, to generate text, images, video, and more. The Vercel AI Gateway connector is built on top of WordPress’s built-in AI client and integrates seamlessly with its connector API. This way it unlocks using AI powered plugins on your site. Features Access hundreds of models from over 40 providers with 1 API key Generate text, images, video, and more, including multi-turn conversations Unified billing and observability across your entire AI stack, with text, image, and video models Automatic fallbacks during provider outages so your app stays up even when a model goes down Pay exactly what providers charge with no platform fees Available models are dynamically discovered from the AI Gateway API – you get access to new models as soon as they’re available. Providers and Models The AI Gateway gives you access to more than 100 models from over 40 providers, including: Amazon (Nova models) Anthropic (Claude models) Black Forest Labs (Flux models) Google (Gemini, Imagen, and Veo models) KlingAI (Kling models) MiniMax (MiniMax models) Mistral (Mistral and Devstral models) Moonshot AI (Kimi models) OpenAI (GPT and Dall-E models) Perplexity (Sonar models) xAI (Grok models) Z.ai (GLM models) You can access all of these and many more directly through the AI Gateway, drastically simplifying your setup. For a full list of models, browse the official AI Gateway models list. Usage Once you install the Vercel AI Gateway Provider plugin on your WordPress site, any AI feature that uses the WordPress built-in AI client can use it, typically through other plugins. If you want to write your own plugin that uses it, you can do so through the WordPress built-in AI client as well. Here’s a code example: $result = wp_ai_client_prompt( 'Hello, world!' ) ->using_provider( 'ai_gateway' ) ->generate_text_result(); Note however, that the usage of using_provider will make the prompt only work if the individual WordPress site has the Vercel AI Gateway Provider plugin active and configured. You should therefore only use it if you want to enforce usage of the AI Gateway. Otherwise, for broader ecosystem compatibility, it is recommended that you don’t specify a provider. You can optionally specify model preferences, for example like this: $result = wp_ai_client_prompt( 'Hello, world!' ) ->using_model_preference( 'claude-opus-4.7', 'gemini-3.1-pro-preview', 'gpt-5.4' ) ->generate_text_result(); In this case, the first relevant model encountered on the site will be used, and if the site has the Vercel AI Gateway Provider plugin active and configured, it will rely on the AI Gateway. See the official docs for more examples. External Services This plugin connects to the AI Gateway API for inference. See the Vercel AI Product Terms and the Vercel Privacy Policy. Contributing Contributions to the plugin are welcome in the project’s GitHub repository.
Top keywords