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%
Echo Knowledge Base – Documentation, FAQs, Chat & Smart Search
Echo Knowledge Base is a powerful documentation tool that helps you create and organize documentation, FAQs, quizzes, and articles. It includes built-in AI search and AI chatbot features and includes comprehensive features to help you build a visually appealing knowledge base. Designed with a modern and professional appearance by default, the plugin offers extensive customization options to align perfectly with your brand identity. FREE KB FEATURES Fast Search Bar: Enable users to find articles quickly with an AJAX-powered search bar. Deep Content Organization: Organize articles into categories and subcategories up to five levels deep. Display articles and categories across tabs or in an intuitive drill-down format. FAQs Layout and Shortcode: Deploy FAQs anywhere on your site with various eye-catching designs. Group questions logically and control their behavior for optimal user engagement. Article Enhancement Tools: Improve user experience with breadcrumbs, next/previous article navigation, print and PDF export options, and more. Table of Contents (TOC): Enhance navigation with a customizable table of contents on article pages for better user experience. Frontend Visual Editor: Customize your Knowledge Base pages live on the front-end with our intuitive visual editor or drag-and-drop Gutenberg blocks. Pre-made Layout Designs: Choose from many beautiful designs and layouts to make your knowledge base both stunning and functional. With dozens of combinations available, you’ll find the perfect look for your site. Most Popular and Recent Articles: Display lists of articles by popularity and recent publication to guide readers to trending and new content. Glossary: Build a centralized dictionary of terms and definitions for your knowledge base. Glossary Terms – Create and manage glossary entries. Published terms are automatically highlighted in your articles with interactive tooltips, helping readers understand key terminology without leaving the page. Glossary Index Shortcode and Block – Display an alphabetical index of all glossary terms on any page using the [epkb-glossary-index] shortcode or the Glossary Index Gutenberg block, with letter navigation and customizable accent color. AI-Generated Glossary Terms (PRO) – Automatically generate glossary terms and definitions from your knowledge base content using AI, saving time and ensuring comprehensive coverage of key terminology. Article Quizzes: Add interactive quizzes to KB articles to reinforce learning and increase engagement. Create custom multiple-choice or true/false questions, add answer explanations, and show published quizzes below the article content. Article Views Counter: Track views with the built-in counter and analyze your most and least popular content to optimize your knowledge base. Customizable Category Archive Page: Customize the category archive page with a custom header, description, and image. FREE AI FEATURES (Optional) All AI features are completely optional and disabled by default. You can enable them at any time if you choose to use AI-powered capabilities. AI Chat (Chatbot): Add a frontend chat dialog where users and visitors can ask questions and get instant AI-powered answers based on on your Knowledge Base, FAQs, internal documentation, notes, and any other source of information. AI Search: When users search, results show relevant KB articles plus an ‘Ask AI’ button to dive deeper with the same query. AI Content Analysis: Automatically analyze your knowledge base articles for quality and optimization. Get AI-powered insights including: Tags Analysis – Optimize article tags and categories for better organization and SEO Readability Score – Evaluate content clarity and structure with AI assistance Learn more. PRO KB FEATURES Advanced Search: Highlight search keywords on article pages, filter search by category, adjust search box styling, and add helper text or links below the search bar. Use advanced search analytics to discover popular queries and identify searches with no results. Granular Content Protection: Control access to documentation based on user groups, WordPress roles, or custom permissions. Seamlessly manage public and private knowledge base content. Unlimited Knowledge Bases: Create unlimited separate knowledge bases, each with its own articles, categories, and tags (great for managing multiple products or departments). Articles Import and Export: Import or export articles and categories using CSV or XML formats for easy migration or backup. AI Smart Search: Display intelligent search results with optional multi-panel sections User Feedback System: Gather valuable insights with article upvote/downvote and feedback forms. Article Links: Turn any article into a link that points to PDFs, external documentation, videos, or other resources. AI Features: Content Gap Analysis AI Quiz Generation – generate quiz drafts from KB articles, then review and edit the title, intro, questions, answers, and explanations before publishing Expand training to include notes, posts, pages, and custom post types Email Notifications for AI insights Human Agent Handoff – lets users escalate from AI to your support team Feedback Buttons – collect thumbs-up/down ratings on AI responses PDF to Articles – upload PDF files and convert them into KB articles with optional AI formatting that organizes content into headings, lists, and paragraphs PDF to Notes – upload PDF files via drag-and-drop or the Media Library and convert them into AI training notes to expand your AI’s knowledge beyond KB articles AI Chat Access Control – restrict who can use AI Chat: everyone, logged-in users only, or specific WordPress roles. Set different access rules for each chat location See the official website for more details on Pro features. ⭐ WALK-THROUGH OF ECHO KNOWLEDGE BASE Watch a quick introduction to Echo Knowledge Base and see it in action: https://www.youtube.com/watch?v=sLwj8FpfBWc ⭐ PROFESSIONAL LAYOUTS INCLUDED Echo Knowledge Base comes with multiple layout options to suit your style: Basic Layout – Clean and simple design Tabs Layout – Organized content in tabbed interface Drill Down Layout – Intuitive navigation through categories Classic Layout – Traditional documentation style Category Focused Layout – Highlight your main categories See our comprehensive documentation here ⭐ ADDITIONAL FEATURES Gutenberg Blocks: Seamlessly integrate knowledge base elements using the WordPress block editor. Flexible Ordering: Order articles and categories alphabetically, by date, or manually with drag-and-drop. SEO Optimization: Built with SEO best practices to help your documentation rank well in search engines. Usage Analytics: Monitor knowledge base traffic and search queries to understand what users need. Interactive Learning: Turn knowledge base articles into quizzes with answer explanations to help readers retain information. Multilingual & RTL Support: Fully compatible with WPML, Polylang, GTranslate, and supports right-to-left languages. Responsive Design: Mobile-friendly and works with any WordPress theme, so your docs look great on all devices. Directory Shortcode: Use a shortcode to display an index of all articles (great for an A-Z index page). Multi-site Compatible: Perfect for WordPress multisite networks – manage documentation across multiple sites. Custom URL Structure: Customize category, tag, and article URLs for a clean and branded structure. Mobile Optimization: Ensures a smooth reading experience on smartphones and tablets. Content Migration: Easily convert existing posts or custom post types into Knowledge Base articles. ⭐ SEO & ACCESSIBILITY OPTIMIZED Echo Knowledge Base is optimized for search engines and adheres to accessibility standards. It supports multiple languages (including RTL scripts) and meets WCAG guidelines, making your documentation usable for a global audience. All layouts are fully responsive and retina-ready, so your knowledge base looks sharp on every device. ⭐ EASY TO STYLE WITH PRE-MADE DESIGNS No coding needed – make it your knowledge base with just a few clicks: 26 Pre-Made Designs: Choose from a variety of professional color schemes and styles. One-Click Theme Switching: Swap layouts (Basic, Tabs, Category-Focused, Classic, Drill Down, Sidebar, Grid, etc.) instantly to find the perfect look. Endless Customization: Further tweak colors, fonts, and styles to match your brand. ⭐ BUILDER COMPATIBILITY Echo Knowledge Base works great with popular page builders: Elementor & Gutenberg: Comes with native blocks and widgets for seamless integration. Other Builders: Fully compatible with Beaver Builder, Divi, Visual Composer, and more. ✅ WHY CHOOSE ECHO KNOWLEDGE BASE? User-Friendly: Designed for ease of use – no coding required and a gentle learning curve. All-in-One Support Hub: Manage documentation, FAQs, quizzes, AI chat, and smart search in one plugin. Professional Design: 26 beautiful, ready-to-use layouts give your docs a polished look out of the box. Highly Customizable: Extensive configuration options to tailor the knowledge base to your needs. Reliable Support: Our friendly, Canadian-based support team is ready to help with any questions. Regular Updates: Continuously improved with new features (our roadmap is packed with upcoming enhancements!). Global Ready: Translate your documentation and serve users in any language with full multilingual support. About Us: We are a Canadian company with over a decade of experience in WordPress and web technologies. We’re passionate about helping you provide better support to your customers.