AI-Only Pages
AI-Only Pages gives you granular control over which search engine bots can index each page on your WordPress site — while simultaneously making those pages more discoverable and useful for AI crawlers like ChatGPT, Claude, and Perplexity. The core idea: you have content that is perfect for AI training pipelines and retrieval-augmented generation (RAG) systems, but you do not want that content competing for rankings in Google, Bing, or Yahoo. AI-Only Pages lets you mark those pages as AI-only: they disappear from traditional search engine indexes while becoming first-class citizens in the AI ecosystem. What it does Per-bot noindex — Block individual bots (Googlebot, Bingbot, Yandexbot, etc.) with a checkbox per bot per page. Checking one bot blocks it; the others still index normally. “Block All” master toggle — One click blocks all 10 supported search engine bots simultaneously. tags and HTTP headers — Both HTML meta tags and X-Robots-Tag HTTP headers are emitted, covering all crawling contexts. Works correctly on all public post types including Pages and custom post types. SEO plugin integration — Suppresses Yoast SEO, WP Core, and RankMath’s global tag on AI-only pages so there is no conflict between the global tag and your per-bot tags. Sitemap exclusion — AI-Only pages are automatically removed from all XML sitemaps (Yoast SEO and WP Core sitemaps are both supported). /llms-index.txt — A plain-text AI discovery file served at yoursite.com/llms-index.txt listing all AI-only pages with their titles and last-modified dates. AI crawlers can use this file to find your AI-optimised content directly. Can be toggled on/off from the settings page. Token Diet — clean AI output — When an AI crawler visits an AI-only page, the plugin serves a cleaned version of the HTML with navigation, sidebars, footers, cookie banners, inline styles, SVGs, and iframes stripped out. AI models receive pure content with minimal noise. Global Settings Page — A top-level “AI-Only Pages” menu in the WordPress admin sidebar lets you configure Token Diet and LLM Index behaviour globally, without touching code. Caching plugin notice — If WP Rocket, LiteSpeed Cache, or another full-page caching plugin is detected, an admin notice explains how to configure it to work alongside this plugin. The Settings Page A full settings page is available under AI-Only Pages in the WordPress admin sidebar. It provides: Section 1 — Instructions & Status: A “How It Works” guide covering the meta box, Token Diet, and LLM Index. A live, clickable URL to your /llms-index.txt file with a green/red status indicator showing whether the index is active. Section 2 — LLM Index Settings: A toggle to enable or disable /llms-index.txt globally. When disabled, the endpoint returns a 404. Section 3 — Token Diet Master Control: A master toggle to enable or disable Token Diet entirely. When off, AI bots receive raw, full HTML — identical to what human visitors see. Section 4 — Granular Token Diet Stripping: Individual toggles for each category of content stripped: Strip structural layout (headers, footers, sidebars, navigation, cookie banners) Strip tags and embedded CSS Strip elements (major token bloaters) Strip elements (maps, embeds, social widgets) Strip elements (Warning: removes WooCommerce Add to Cart buttons) Strip tags (Note: application/ld+json schema is always preserved) Supported Search Engine Bots Googlebot (Web), Googlebot-Image, Googlebot-News, Googlebot-Video, AdsBot-Google, Bingbot, Slurp (Yahoo), DuckDuckBot, Baiduspider, YandexBot. AI Bots Welcomed GPTBot, ChatGPT-User, ClaudeBot, PerplexityBot, YouBot, Meta-ExternalAgent, Amazonbot, Bytespider, Diffbot, cohere-ai, anthropic-ai, AI2Bot, OAI-SearchBot, and more. These bots are detected automatically and served cleaned content when they visit an AI-only page. Developer-Friendly Every major behaviour is extensible via WordPress filters. See the Developer Reference section below. The Settings class hooks into filters at priority 5, leaving priorities 10 and above free for developer overrides — so your custom add_filter() calls always win. Using the Plugin Per-page control Open any post or page in the WordPress editor. Find the AI-Only Pages meta box in the right sidebar. Check individual bots to block them, or use Block from ALL search engine bots to check all at once. Click Publish or Update to save. The noindex tags take effect immediately. Visit yoursite.com/llms-index.txt to confirm your page appears in the AI content index. Note: The master toggle requires JavaScript. The individual checkboxes always work regardless of JS state. Global settings Go to AI-Only Pages in the WordPress admin sidebar. Review the “How It Works” section and confirm your /llms-index.txt URL is live. Use the LLM Index Settings card to enable or disable the discovery file. Use the Token Diet — Master Control card to enable or disable all output cleaning. Use the Token Diet — Granular Stripping card to select exactly which HTML elements are stripped from AI output. Click Save Settings. Developer Reference All filters are applied inside AIOnly\Pages\Plugin. The Settings class hooks at priority 5; standard developer priority is 10+. aionly_ai_crawler_signatures Array of User-Agent substrings used for Layer 1 bot detection. @param string[] $signatures @return string[] aionly_strip_selectors CSS-style selector strings passed to Pass 1 of Token Diet (structural removal). Supports element tag, #id, and .class (one class, no combinators). @param string[] $selectors @return string[] aionly_strip_token_bloat_tags XPath query strings passed to Pass 2 of Token Diet (tag removal). @param string[] $queries @return string[] aionly_allowed_attributes HTML attribute names kept on every element by Pass 3 of Token Diet. Everything else is stripped. @param string[] $attributes @return string[] aionly_should_clean_output Boolean. Return false to disable Token Diet entirely for a specific post. @param bool $enabled Default: true. @param \WP_Post $post @return bool aionly_enable_xrobots_headers Boolean. Return false to suppress X-Robots-Tag HTTP headers. @param bool $enabled Default: true. @param \WP_Post $post @return bool aionly_cache_ttl Filter the transient TTL in seconds. @param int $ttl Default: 600 (10 minutes). @return int aionly_llms_index_lines Filter the array of text lines that make up llms-index.txt before output. @param string[] $lines Array of lines (including comment lines). @param int[] $active_ids Post IDs included in the index. @return string[] aionly_supported_post_types Array of public post type slugs the plugin should support. @param string[] $post_types @return string[] aionly_use_heuristic_bot_detection Boolean. Return false to disable Layer 2 heuristic bot detection. @param bool $enabled Default: true. @return bool Code Examples Disable heuristic bot detection (uptime monitors): add_filter( 'aionly_use_heuristic_bot_detection', '__return_false' ); Preserve WooCommerce forms (developer override — wins over settings page): add_filter( 'aionly_strip_token_bloat_tags', function( $queries ) { return array_filter( $queries, function( $q ) { return $q !== '//form'; } ); } ); Add a custom strip selector: add_filter( 'aionly_strip_selectors', function( $selectors ) { $selectors[] = '.advertisement'; $selectors[] = '#newsletter-popup'; return $selectors; } ); Keep class attributes in AI output: add_filter( 'aionly_allowed_attributes', function( $attrs ) { $attrs[] = 'class'; return $attrs; } ); Add a custom AI crawler signature: add_filter( 'aionly_ai_crawler_signatures', function( $sigs ) { $sigs[] = 'FutureBot'; return $sigs; } ); Restrict to specific post types: add_filter( 'aionly_supported_post_types', function( $types ) { return [ 'post', 'page' ]; // Only posts and pages. } ); Disable Token Diet on a specific post (always wins, priority 10 > settings priority 5): add_filter( 'aionly_should_clean_output', function( $enabled, $post ) { if ( 42 === $post->ID ) { return false; // Post 42 serves full HTML to AI bots. } return $enabled; }, 10, 2 ); Read a single setting value in custom code: $token_diet_on = '1' === \AIOnly\Pages\Settings::get( 'token_diet_enabled' ); $all_settings = \AIOnly\Pages\Settings::get_settings(); // Full array.
Top keywords
- return22×1.79%
- ai17×1.38%
- post17×1.38%
- token17×1.38%
- pages16×1.30%
- settings16×1.30%
- diet15×1.22%
- token diet14×1.14%
- aionly13×1.06%
- param13×1.06%
- ai-only12×0.98%
- string12×0.98%
AI ChatBot with ChatGPT and Content Generator by AYS
AI Chatbot with ChatGPT by AYS ChatGPT plugin Homepage ChatGPT plugin Demo ChatGPT plugin Documentation ChatGPT Chatbot plugin can assist you to generate high-quality content for your blog, and finding the answer to any questions in seconds. ChatBot for WordPress can be your personal assistant in writing HTML, CSS, or any other programming codes for you right from your WordPress dashboard. Using the best AI chatbot you will be able to connect with the world and find the answers to any questions. With a simple shortcode you will be able to display the chatbot in the front end. Give your website visitors the ability to use the ChatGPT AI Assistant plugin as soon as they will enter your website. Chatbot based on your Website Content This virtual assistant is designed to learn and understand the content of your website and provide accurate and relevant answers to user questions, just like a support specialist would. AI chatbot represents the next generation of customer support – no human resources are needed. The chatbot learns your website content (the content you embed) and answers all the questions related to the embedded data. As a knowledgeable support specialist the chatbot is ready to assist website visitors with their questions and concerns such as help with product features, troubleshooting, or general inquiries. To activate the Embedding feature, you just need to connect to your Pinecone account and you’ll be ready to start using this advanced feature. What makes it different from a support specialist? 24/7 live chat support an unlimited number of customer conversations simultaneously quickly learn and adapt to new information instant responses cost-efficiency multilingual Support Revolutionizing Customer Support with AI Chatbot AI has significantly transformed the customer support, and our AI chat assistant is an example of this evolution. With features such as instant responses, 24/7 availability, and the ability to handle a wide range of inquiries, our AI customer support system ensures that your questions and concerns are addressed promptly and accurately. Our AI in customer support isn’t limited to predefined rules. It goes beyond, learning from interactions and continuously improving its responses. This ensures that you receive the highest level of AI customer care available. Imagine having a free chatbot for WordPress that can analyze your website’s content and provide assistance tailored to your specific needs. That’s exactly what our AI chatbot plugin offers. PRO | DEMO | DOCUMENTATION Use AI Chat to Create Content Easily Easily create articles, blogs, and marketing content in minutes with the ChatGPT chatbot plugin’s content generator feature. Instantly create high-quality text in your editor, customized to your style and audience. Skip the research and drafting level, focus on engaging your readers while the AI plugin does the writing for you. The plugin offers AI-powered content creation with user convenience. Covering top AI chatbot features it simplifies content creation for different areas. Admin Dashboard Assistance with AI Chatbot Admins can access a helpful chatbot right from their dashboard! It’s like having a super-smart assistant available whenever you need help while managing your website or platform. No more jumping between tabs or apps to get answers or fix things’ the AI chatbot right there on your dashboard, ready to assist. Having the chatbot on the dashboard is like having a user-friendly tool for quick solutions. It’s all about making admin tasks easier and more efficient. AI Image Generator Imagine if ChatGPT could also create pictures based on what you describe! With the Image Generator in the ChatGPT plugin, you can ask it to make images of things you talk about. Just describe what you want the picture to be about. It’s a fun way to visualize your ideas and make conversations more interesting. All Available Models Our WordPress ChatGPT Assistant plugin supports a full range of powerful AI models, giving you more flexibility than ever. You can work with GPT-4 and GPT-4 Turbo for smart and reliable responses. We’ve also added GPT-4.1, the most advanced model for deep understanding and better performance. The GPT-4o the new all-in-one model that combines text, image, and voice capabilities is also availabel. For everyday tasks, GPT-o3 delivers great results quickly, while GPT-o3-mini is perfect for fast tasks. o4-mini brings the power of GPT-4 into high-speed version. And for creative tasks, the new GPT-Image-1 model lets you generate detailed images from simple text prompts GPT-5-nano GPT-5-mini GPT-4.1-nano GPT-4.1-mini GPT-4o-mini GPT-4 GPT-4 Turbo GPT-4.1 GPT-4o GPT-o3 GPT-o3-mini GPT-Image-1 GPT-4/GPT-4 Turbo The WordPress AI Chatbot has the GPT-4 and GPT-4 Turbo AI language models available. GPT-4 is designed to adapt and specialize in specific domains, allowing for more accurate and expert-level responses in fields such as medicine, law, engineering, and more. GPT-4 Turbo is an enhanced version of GPT-4, engineered for even greater performance and efficiency. GPT-4 Turbo is quicker in giving answers. You won’t have to wait long to get a response. Just follow the simple steps and speak with an AI assistant for WordPress. You will no longer be alone as your assistant is there for you whenever you need. After activating the plugin, the AI Assistant with ChatGPT window will pop up at the bottom-right corner of your WordPress dashboard. This advanced chatbot can answer your follow-up questions like a human-like conversation.Our advanced chatbot with GPT-3 AI is designed to make your interactions feel more human-like. It can not only answer your initial questions but also engage in follow-up conversations, creating a more natural and dynamic exchange. It’s like having a human conversation not with the chatbot plugin, but with the efficiency and knowledge of artificial intelligence. With ChatGPT chatbot WordPress plugin, you’re at the highest level of AI customer support. This plugin brings the magic of GPT-3 AI directly to your website, enhancing your content and user experience. It’s time to explore the possibilities and unlock the full potential of GPT-3 AI with ChatGPT for WordPress. Integrate Google Gemini to your WordPress Google Gemini (Bard) is now available in WordPress AI plugin. Connect and get the opportunity to generate high-quality codes, make requests with texts, pictures and sounds all in your WordPress dashboard. Do you have complex requests on subjects like math and physics? Gemini is here to solve them all. The AI model is trained to understand complex request and provide up to date data. Gemini is the most capable Google AI model yet and you have the ability to test it on your own. Better WordPress experience with AI Chatbot Having the ChatGPT chatbot plugin on your WordPress website offers a multitple of advantages. This free AI chatbot serves as your AI assistant by providing your website visitors with the ability to engage in free AI chat and talk to AI bot directly from your website. This conversational AI, driven by artificial intelligence chat, is more than just a chatbot; it’s the best AI chatbot for customer service. With its advanced capabilities, it improves chatbot customer service. This AI customer service bot ensures that your users receive better AI customer care, available 24/7. Implementing the ChatGPT chatbot WordPress plugin on your website means delivering a dynamic and efficient user experience. MAIN FEATURES ChatGPT style chatbot Live writing Different Content style Reliable storage Customizable solution Automation Contextual understanding Suits specific needs Intent Recognition Answering All Inquiries Code Understanding PRO FEATURES User Role Permissions Dark Mode One Click Copy Text to Speech for Response Front end Chat (Demo) Save Chat Log Information Form Export chat Information form Suggest a title Content generator Image generator GPT-4 turbo GPT-4o GPT-4.1 GPT-o3 GPT-o3-mini GPT-Image-1 Google Gemini ChatGPT Chatbot Based on your WordPress Website Content (Pro feature) HOW TO USE Sign up here or log in if you already have an account in the OpenAI platform. You can use your Google or Microsoft account to sign up if you don`t want to create an account by entering an email/password combination. You may need a valid mobile number to verify your account. (If you have an another account with the mentioned number, then please take into consideration that OpenAI will not provide you Free Trial) Then, you need to visit your OpenAI key page. Create a new key by clicking the “+ Create new secret key” button. Copy the key, go back to your WordPress dashboard, and paste it into the provided box. Click on the “Connect” button. Don’t forget, in case of any problems, questions or suggestions feel free to contact us via FREE SUPPORT FORUM. Other plugins from Ays Pro Team Quiz Maker for creating advanced quizzes and exams easily and quickly. Survey Maker for collecting data and analyze it. Fox LMS for creating, managing, and delivering online courses directly from your WordPress site. Popup Box, an easy way to create eye-catching and engaging popups. Poll Maker for creating powerful and interactive polls. Secure Copy Content Protection to protect web content from being plagiarized. Chartify to build both static and dynamic charts, graphs and diagrams. Easy Form to create various forms for your website. Personal Dictionary to create and organize their vocabulary lists, study and memorize the words. Photo Gallery for displaying responsive image gallery with awesome layout options. FAQ Builder to display Frequently Asked Questions on your website with a beautiful accordion. Image Slider give the aility to grab your audience’s attention with amazing and entertaining slideshows. Random Posts and Pages Widget for creating internal links and encouraging visitor engagement on your website. Popup Like box to promote your Facebook page and add number of Likes. Advanced Related Posts allows you to show a related posts list on your website after a post or via a widget. Portfolio Responsive Gallery to showcase beautiful image galleries on your WordPress websites.