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%
Smart Marketing SMS and Newsletters Forms
🇵🇹 VERSÃO EM PORTUGUÊS (PT-PT) E-goi Smart Marketing: O Motor de Crescimento All-in-One para o Seu WordPress! Cansado de ter contactos no seu site que nunca se transformam em vendas? O plugin E-goi Smart Marketing SMS and Newsletters Forms é o seu atalho para o sucesso, transformando o seu website WordPress ou loja WooCommerce numa máquina de marketing e automação integrada. Venda mais, recupere vendas perdidas e automatize a sua comunicação, tudo a partir de um só lugar! 💡 PORQUÊ INICIAR OU MUDAR PARA O E-GOI SMART MARKETING? 1. Captação Múltipla e Compatibilidade Total Chega de widgets, pop-ups e shortcodes de diferentes ferramentas! Simplifique a sua gestão e capte contactos de forma eficaz, em qualquer canal: Captação: Crie Pop-ups, Formulários Simples e Complexos, Widgets e Barra de Subscrição — tudo a partir de um único painel. Comunicação: Use o Connected Sites para ligar o seu site a canais como Web Push, SMS e E-mail. Compatibilidade: Garanta que os seus formulários e elementos de design funcionam com Elementor, Gutenberg, WPBakery Page Builder, Contact Form 7 e Gravity Forms. 2. Integração Profunda com WooCommerce (Track & Engage) O E-goi oferece uma integração de dados de compra profunda para automações que geram receita: Vendas Perdidas: Ative o Track & Engage para monitorizar Carrinhos Abandonados e comportamento de navegação, permitindo automações de recuperação por E-mail e SMS. Visão 360º da Encomenda: Sincronize Produtos e utilize o Converter Encomendas (API Backend) para registar no E-goi o estado exato de todas as compras. Conteúdo Automatizado: Envie campanhas de e-mail sobre um produto automaticamente (requer WooCommerce). 3. Entregabilidade Essencial com E-mail Transacional (SMTP) O seu marketing é inútil se os e-mails não chegarem. Confie a sua reputação de remetente a quem sabe: Fim ao SPAM: Utilize o E-mail Transacional (SMTP) do E-goi para processar todos os e-mails críticos do WordPress e WooCommerce. Relatórios: Melhore a sua taxa de entregabilidade e aceda a relatórios detalhados de envios, aberturas e cliques. 4. Automação Simples e Poderosa com RSS Feed Mantenha a sua audiência a par das novidades, sem ter de criar e-mails manualmente todas as semanas: Feeds Personalizados: Crie RSS Feeds por Categorias, Tags ou Tipo (Artigos/Produtos). Campanhas Automáticas: Transforme esses Feeds em Campanhas RSS Feed automáticas. Conformidade: Garanta a qualidade e a segurança dos seus dados com Double Opt-in (RGPD). Novidades: Conversão de Encomendas (API Backend): Monitorização e sincronização dos estados de encomenda (“Criada”, “Pendente”, “Cancelada”, “Completa” e “Desconhecida”) diretamente com o E-goi. Funcionalidades: Geral: 100% Gratuito, Sincronização automática de contactos, Connected Sites, E-goi Track & Engage, Bloco E-goi para Gutenberg. Captação de Leads: Formulários Simples, Formulários Múltiplos, Barra de Subscrição, Formulários Pop-up, Formulários Widgets. Automação & E-commerce: Conversão de encomenda por estado (API Backend), Campanha E-mail com publicação de artigo, Sincronização produtos Woocommerce. Canais & Conteúdo: Notificações Web Push, RSS Feed por categorias, tags ou produtos. E-mail Transacional (SMTP) E-goi: Envio de todos os e-mails do WordPress e WooCommerce pelo E-goi, com melhor entregabilidade. Compatibilidade: Integração com WooCommerce, CF7, Gravity Forms, Elementor, WPBakery Page Builder. Conformidade: Opção de validação dos contactos com Double Opt-in (RGPD), Associação de Tags a formulários. Add-on: Plugin E-goi SMS Orders Alert/Notifications Requisitos: Plano E-goi com acesso a sua API Key. WordPress na versão 4.7 ou superior. Já tem uma conta E-goi? Criar conta E-goi gratuita 🇬🇧 ENGLISH VERSION (EN-EN) E-goi Smart Marketing: The All-in-One Growth Engine for Your WordPress! Tired of having contacts on your site that never turn into sales? The E-goi Smart Marketing SMS and Newsletters Forms plugin is your shortcut to success, transforming your WordPress website or WooCommerce store into an integrated marketing and automation machine. Sell more, recover lost sales, and automate your communication, all from one place! WHY SWITCH TO E-GOI SMART MARKETING? 1. MULTIPLE LEAD CAPTURE AND FULL COMPATIBILITY No more widgets, pop-ups, and shortcodes from different tools! Simplify your management and capture contacts effectively, across any channel: Multiple Capture: Create Pop-ups, Simple and Complex Forms, Widgets, and Subscription Bar — all from a single panel. Immediate Communication: Use Connected Sites to link your site to multiple E-goi channels, such as Web Push, SMS, and E-mail, re-engaging visitors wherever they are. Full Compatibility: Ensure your forms and design elements work with Elementor, Gutenberg, WPBakery Page Builder, Contact Form 7, and Gravity Forms. 2. DEEP WOOCOMMERCE INTEGRATION (TRACK & ENGAGE) Go beyond the basics. E-goi offers deep purchase data integration for automations that generate revenue: Lost Sales Automation: Activate Track & Engage to monitor Abandoned Carts and real-time browsing behavior, enabling recovery automations via E-mail and SMS. 360º Order View: Synchronize Products and use the Order Conversion (API Backend) to record the exact status of all purchases in E-goi (“Created”, “Pending”, “Canceled”, “Completed” or “Unknown”), allowing for highly segmented post-purchase automations. Automated Content: Send e-mail campaigns about a product automatically as soon as you publish a new article (requires WooCommerce). 3. ESSENTIAL DELIVERABILITY WITH TRANSACTIONAL E-MAIL (SMTP) Your marketing is useless if the emails don’t arrive. Trust your sender reputation to the experts: End SPAM: Use E-goi’s Transactional E-mail (SMTP) to process all critical emails from WordPress and WooCommerce (password recovery, order confirmations). Reports and Trust: Improve your deliverability rate and access detailed reports on sends, opens, and clicks to track transactional performance. 4. SIMPLE AND POWERFUL AUTOMATION WITH RSS FEED Keep your audience up-to-date with news without having to manually create emails every week: Custom Feeds: Create RSS Feeds by Categories, Tags, or Type (Articles/Products). Automatic Campaigns: Transform these Feeds into automatic RSS Feed Campaigns that are sent to your subscribers on a schedule without intervention. Compliance: Ensure the quality and security of your data with the option for contact validation via Double Opt-in (GDPR). What’s new: Order Conversion (API Backend): Monitoring and synchronization of order statuses (“Created”, “Pending”, “Canceled”, “Completed” or “Unknown”) directly with E-goi. Features: Geral: 100% Free, Automatic contact synchronization (incl. custom fields), Connected Sites, E-goi Track & Engage, Gutenberg E-goi Block. Lead Capture: Simple Forms, Multiple Forms (via Connected Sites), Subscription Bar, Pop-up Forms (Visit and Exit Intent), Widget Forms. Automation & E-commerce: Order sync by status (API Backend), E-mail campaign on article publication, WooCommerce product synchronization. Channels & Content: Web Push Notifications, RSS Feed by categories, tags or products. E-goi Transactional E-mail (SMTP): Send all WordPress and WooCommerce e-mails through E-goi for better deliverability. Compatibility: Integrates with WooCommerce, CF7, Gravity Forms, Elementor, WPBakery Page Builder. Compliance: Double Opt-in contact validation (GDPR), Tag association to forms. Add-on: E-goi SMS Orders Alert/Notifications Requirements: E-goi Plan with access to your API Key. WordPress version 4.7 or higher. Do you need an E-goi account ? Click and create a free E-goi account