AI Translate
AI Translate automatically translates your entire website using advanced artificial intelligence. The plugin translates pages, posts, titles, menus, and more in real time while customers and bots visit your website in their perferred language. Use cache warming to improve performance for first visitors. Choose any model you wish, from frontier models to a locally installed model. What makes AI Translate unique? 🎯 Smart AI Analysis The AI has an option to analyze your website to understand what you do and how you communicate. This ensures translations are tailored to your brand, terminology, and tone of voice. ⚡ Intelligent Caching With intelligent caching, your site runs fast, even with many translations. Translations are automatically updated when you change original content, without extra API costs. 🌍 SEO-Friendly Automatic hreflang tags, translated URL slugs, and proper indexing ensure search engines can properly index all language versions of your site. Features 🌐 Automatic Translation – Pages, posts, and custom post types are automatically translated ✨ Smart AI – Generates a summary of your site for context-aware translations. 🌍 35+ Languages – Support for all major world languages and much more. ⚡ Fast Caching – Intelligent cache for better performance and lower costs. 🔄 Automatic Updates – Cache expires immediately of content when the original page changes . 🍪 Remembers Preferences – Saves each visitor’s language preference (via cookies). 🎨 Easy to Use – Simple language switcher in the left corner of your website. 🔧 Flexible – Choose your own AI model (OpenAI, Deepseek, or other APIs). 🔗 SEO-Friendly – Also translates URLs for better search engine optimization. 🔥 Cache-Warming – Have all pages pre-translated so they are immediately available to visitors. Configuration All plugin settings can be found under ‘AI Translate’ in your WordPress admin menu. API Settings 🔑 API Provider – Select a provider of your AI translation API (e.g. OpenAI) 🔐 API Key – Your API authentication key 🤖 Translation Model – Choose your preferred AI model Language Settings 🌍 Default Language – The main language of your website 🎯 Enabled Languages – Languages visible in the language switcher 🔍 Detectable Languages – Automatic translation on browser match, but not in switcher Cache Settings ⏱️ Cache Duration (days) – How long translated content stays cached 🗑️ Cache Management – Clear all cache, only transient cache, or cache per language 🔄 Automatic cache invalidation – Cache is only refreshed on content changes Advanced Settings 📄 Homepage Meta Description – Set a custom meta description that will be automatically translated. ✨ Auto-generate site context – Let the AI automatically analyze your site for better translations Usage After configuration, AI Translate automatically adds a language switcher to your website (default: bottom left). Visitors can select their preferred language; content is translated instantly or loaded from cache. Each visitor’s language preference is remembered for future visits. Cache 📁 Location – Translations are cached in /wp-content/uploads/ai-translate/cache/ 🧹 Auto-cleanup – Expired cache is automatically cleaned up 🔧 Manual clearing – Clear cache manually via plugin settings Recommended Model Selection 💡 OpenAI: gpt-5.4-mini Pretty good for most languages and reasonably priced. 💰 Deepseek: deepseek-chat – Slower, but more cost-effective. 🔧 OpenRouter: Select google/gemini-3.1-flash-lite which has a very good price/performance ratio. 💡 Groq: Select openai/gpt-oss-120b Extremely fast, pretty cheap and very good in translating. Gemini flash is the best price performance model available now. It is fast, support all languages and has low pricing. Development 🔗 Path-based language URLs for SEO 🚀 Support for more content types and translation improvements are in development ⚡ Caching and API optimization are continuously improved External Services AI Translate requires an API key from one of the supported providers: Data Handling 🔒 Only website content for translation is sent—no visitor IP or personal data 💾 All translations are cached locally; nothing is shared externally Requirements ✅ WordPress 6.2 or higher ✅ PHP 8 or higher 🔑 API key for OpenAI, Deepseek, or compatible service Provided by 🌐 NetCare
Top keywords
- cache16×2.66%
- language13×2.16%
- ai12×2.00%
- api9×1.50%
- automatically7×1.16%
- content7×1.16%
- languages7×1.16%
- model7×1.16%
- translations7×1.16%
- website7×1.16%
- settings6×1.00%
- translation6×1.00%
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. There’s a skill for that! Teach your coding agent about how this provider can be used. npx skills add vercel-labs/ai-gateway-provider-php --skill use-ai-gateway-provider 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.