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%
DiagnoSEO – Fast and Automated On-page SEO
DiagnoSEO is a performance-first SEO plugin for WordPress users who want full control without bloat. DiagnoSEO is the lowest memory WordPress SEO plugin, confirmed by independent performance tests on WP Hive and Plugin Tests. Built for speed, scalability, and real SEO work, DiagnoSEO stays fast even on large and complex websites. It uses minimal memory, optimized code (less than 100KB of a ZIP file), and a clean architecture designed with Core Web Vitals in mind. This is not a plugin that adds features at the cost of performance. DiagnoSEO is built for websites where speed, control, and SEO quality actually matter. You get predictable performance backed by 17+ years of real-world SEO experience, and a plugin especially valued by experienced SEO specialists who need advanced SEO control, predictable behavior, and a clean interface. DiagnoSEO is also part of the DiagnoSEO SEO Software Suite, an AI-powered SEO platform with over 50 tools for audits, keyword research, competitor analysis, backlinks, and AI-assisted content workflows. The WordPress plugin works as a natural extension of this ecosystem. Who is DiagnoSEO for? 👤 DiagnoSEO is designed for users who want ease of use, control, and performance: Beginners who want clear and practical SEO guidance Bloggers and content creators Small and medium-sized businesses WooCommerce store owners Developers and agencies SEO professionals who care about performance and advanced SEO control The interface is clean and focused. Advanced options are available when needed, without overwhelming the user. Why choose DiagnoSEO? ⭐ Most SEO plugins try to do everything. DiagnoSEO focuses on what actually moves the needle. Instead of bloated dashboards and unnecessary features, DiagnoSEO helps you improve content quality, maintain full control over SEO signals, keep your website fast, and scale SEO safely as your site grows. It is a modern, performance-focused SEO plugin for websites that need more than basic SEO tweaks. DiagnoSEO was named a finalist at the European Search Awards 2025 in two major categories: Best SEO Software Suite and Best Software Innovation. This industry recognition underscores its innovation and effectiveness. Core SEO Features (Free) Custom meta titles and meta descriptions Meta tag templates Google search snippet preview Meta robots control Custom canonical URLs Advanced Schema.org support Breadcrumbs with HTML and Schema Open Graph metadata and social previews XML sitemap Optimization for multiple related keywords SEO checkpoints and actionable on-page recommendations Content analyzer with keyword placement checks Live SEO score while editing Redirect attachment pages to image files Easy insertion of analytics and tracking codes Fully compatible with Multi Premium WordPress Theme All features are built with performance and usability in mind. WordPress SEO Audit & Checker 🔍 See your SEO score instantly Find error-level issues hurting your visibility Discover quick SEO wins you can fix fast Get clear priorities on what to fix first Check posts, pages, products, and key SEO settings automatically in seconds DiagnoSEO also includes a built-in WordPress SEO Audit & Checker that helps you quickly review important on-page and site-wide SEO issues directly inside WP admin. It analyzes metadata, content, structure, links, images, accessibility, schema, WooCommerce products, and product categories using WordPress and DiagnoSEO plugin data only, so you get fast, actionable SEO insights in a lightweight workflow. Unique Pro SEO Features 🚀 DiagnoSEO Pro includes advanced SEO features rarely found in other SEO plugins. For a detailed feature comparison with other popular SEO plugins, see: Yoast vs Rank Math vs DiagnoSEO. Advanced Schema, E-E-A-T & SERP Enhancements ReviewedBy schema support for stronger E-E-A-T signals Post rating with stars and schema for higher click-through rates in SERPs SameAs schema support for better social media and brand entity connections LocalBusiness schema support Multiple Schema.org types per page Advanced Internal Linking & Content Structure Anchor text control in post lists without changing H1 for better SEO and UX Affiliate deeplink hider – a safer alternative to rel=”nofollow” that protects internal link equity and prevents link juice leaks Automatic table of contents for improved UX and internal linking SEO Categories widget for better internal linking of nested categories Advanced SEO Control & Privacy Advanced content quality checkpoints for better SEO audits XML sitemap with customizable filename for better privacy Meta referrer support for privacy and analytics control Performance-focused advanced options for better SEO, UX, and conversions These features are designed to solve real SEO problems, not to inflate feature lists. More Pro SEO Features 🔥 AI, Automation & Content Intelligence AI-powered meta title and meta description generator AI-powered comments generator Unlocked useful content quality and SEO checkpoints Related keyword suggestions based on semantics Internal linking suggestions Advanced SEO Management & Indexing Redirection manager with 301 and 302 redirects IndexNow support for super-fast indexing in Bing and Yandex Option to change all external links to nofollow (Multisite supported) Google News XML sitemap HTML sitemap block Content, UX & Visibility Enhancements Automatic table of contents and Table of Contents block Related & Featured posts widget Featured posts widget WooCommerce & Advanced Website SEO Advanced WooCommerce SEO metadata SEO Categories widget for WooCommerce DiagnoSEO SEO Software Suite Access DiagnoSEO Pro extends WordPress SEO with access to professional SEO tools and workflows beyond the WordPress dashboard. Access to professional SEO tools from the DiagnoSEO All-in-One SEO Software Suite Support for SEO audits, keyword research, competitor analysis, backlinks, and content workflows Website crawl tool access (e.g. 404 detects and 20 more factors) Access to super detailed and advanced SEO Checker tool (200+ factors) Access to competitors analysis SEO tool (using AI and real search data) Designed for SEO specialists, agencies, and teams managing SEO beyond WordPress Support & Professional Use Dedicated premium SEO support Read full features list and details AI-Powered SEO (Pro) 🤖🔥 AI-Assisted Metadata & Content Support DiagnoSEO Pro uses the OpenAI API to generate or improve: Meta titles Meta descriptions Contextual comments for posts Metadata are generated based on SEO best practices. AI tools are designed to save time, support consistent SEO workflows, and help maintain content quality at scale. Easy Migration 🔄 Switching to DiagnoSEO is simple and safe. You can import SEO data from other popular SEO plugins (Yoast SEO, Rank Math, SEOPress, and many more) with no data loss and no SEO risk. Why switch to DiagnoSEO? 🚀 If your current SEO setup feels slow, bloated, overly complex, or limiting in advanced SEO control, DiagnoSEO gives you back speed, clarity, and full control without compromising performance. Optimize smarter. Stay fast. Stay in control. Switch to DiagnoSEO and experience performance-first SEO for WordPress.