ByTheWeb AI – AI Visibility Assistant
ByTheWeb AI is your all-in-one AI assistant for WordPress. Free WordPress Plugin built for AI engines to understand, reference, and recommend your website. New: AI Audit for ChatGPT, Gemini, Perplexity and Claude Launch an AI visibility scan for your website from the WordPress dashboard. The report opens on ByTheWeb.ai in a new browser tab and shows how leading AI engines currently understand and describe your website. Gemini and ChatGPT are available without an API connection. Connect your ByTheWeb AI account to include Perplexity and Claude in the audit. Take your site AI Visibility & SEO to the next level ByTheWeb GEO bridges the gap between classic SEO and modern AI readiness, ensuring your content is structured, summarized, and optimized for AI crawlers and Answer Engines. Features AI Audit – ChatGPT, Gemini, Perplexity and Claude Launch the ByTheWeb AI Website Scanner directly from your WordPress dashboard and review how leading AI engines understand the current website. The current WordPress website domain is selected automatically. Review separate results from ChatGPT, Gemini, Perplexity and Claude. Discover detected facts, unclear information and questions your website should answer. Review public sources and citations where returned by the AI provider. Gemini and ChatGPT Audits are available without an API connection. Connect your ByTheWeb AI account to include Perplexity and Claude. The complete report opens on ByTheWeb.ai in a new browser tab. FAQ Schema Generation (JSON-LD) This feature adds FAQ Schema (JSON-LD) to any Page/Post/CPT, creating clear, structured FAQ data that can help search engines and AI systems better understand your content. 🔎 Quick Video Guide (2:30) – FREE 🔎 Quick Video Guide (1:59) – WITH AI Media Metadata Optimization (Alt, Title, Caption & Description) Turn your images into an SEO and AI advantage. Easily manage Alt text, titles, and descriptions from one place to boost accessibility, image search rankings, and AI-driven discoverability. 🔎 Quick Video Guide (1:42) – FREE 🔎 Quick Video Guide (1:12) – WITH AI Security & Access Control Security is our top priority. ByTheWeb AI strictly follows WordPress capability standards to ensure that your API credits are completely safe from unauthorized usage. Subscribers, store customers, or guests cannot trigger AI actions or consume your credits. AI-Powered Editing Tools: Only users with the appropriate WordPress editing capabilities can access AI-assisted Media Metadata Optimization and FAQ generation tools. System Settings: Users with the appropriate administrative or editor capabilities can modify supported plugin settings. Modifying the API Key and managing credits is strictly restricted to Administrators (manage_options). AJAX Endpoint Protection: Every single AJAX endpoint in our plugin is protected by a double-layer security mechanism. This includes strict Nonce Verification to prevent Cross-Site Request Forgery (CSRF) attacks, and a Capability Check (current_user_can) to ensure the logged-in user is authorized before executing any action. Unauthorized requests are immediately rejected by the server. External services This plugin connects to our external API service (ByTheWeb.Cloud) to process AI-powered features such as FAQ generation, image analysis, and media metadata optimization without slowing down your server. What data is sent and when: When an authorized user launches AI Audit, the plugin opens the ByTheWeb.ai Website Scanner in a new browser tab and includes the current website domain in the btw_scan_url URL parameter. Launching AI Audit does not intentionally send private WordPress administration content, passwords, unpublished posts, or private database content. When using AI-assisted Media Metadata Optimization or image analysis, the URL of the selected image is sent to ByTheWeb Cloud for AI processing. When generating FAQ Schema with AI, the plugin sends the relevant post or page text content to ByTheWeb Cloud for analysis. API requests that require an account include the API Key and website domain for authentication and domain validation. Website Scanner | Cloud Service | Terms of Service | Privacy Policy Note: An API key is required to connect to the external cloud AI features. You can obtain an API key from the plugin settings page or our website. Optional Usage Tracking ByTheWeb AI includes optional plugin usage tracking. Usage tracking is disabled unless a WordPress administrator chooses to enable it. When enabled, the plugin may send the website domain, plugin name and version, WordPress version, PHP version, site locale, API connection status, and plugin activation or deactivation events to ByTheWeb services for analytics, compatibility monitoring, and product improvement. Usage tracking does not send post or page content, passwords, or API keys. Usage tracking can be disabled again at any time from the plugin settings. Privacy Policy Help & Documentation Get help, support on documentation page. Visit ByTheWeb.ai – AI Visibility & WordPress Assistant official website | AI Credit & pricing.
Top keywords
- ai33×4.35%
- bytheweb15×1.98%
- website14×1.85%
- api11×1.45%
- wordpress11×1.45%
- bytheweb ai10×1.32%
- content6×0.79%
- faq6×0.79%
- usage6×0.79%
- audit5×0.66%
- chatgpt5×0.66%
- claude5×0.66%
PubPla AI Help Center
This plugin add new custom post type ‘FAQ’. With some functionality, you can build help center for your user. What is help center? We collect examples at our github wiki. Live demo: https://demo.kunoichiwp.com/pubplafaq/ — Try the AI Overview on the front page. The demo is in Japanese, built around a fictional anti-aging subscription “Jovian”, but you can still get a feel for how the AI answers real questions from your FAQ content (and admits when something isn’t covered). Creating Portal This plugin will provide… Custom post type with single page and archive page. Custom taxonomy associated to CPT. Incremental search box. AI Overview(Since 2.0.0) AI Overview AI Overview answers user questions based on your FAQ content using a large language model. It uses the wp-ai-client bundled with WordPress core since WordPress 7.0, which requires an AI service to be configured in WordPress. Requirements: AI Overview requires WordPress 7.0 or later. On older WordPress versions, the AI Overview block and template function will still appear in the editor and on the front-end, but the search form will not work (the REST endpoint that powers it is disabled). Other features of this plugin (FAQ custom post type, incremental search, shortcode) continue to work on WordPress 6.6+. Upgrade WordPress to 7.0 to enable AI Overview. You can configure AI behavior and rate limiting from Settings > Help Center in the admin panel. The settings page also includes a Rebuild Catalog Now button to manually refresh the FAQ catalog used as LLM context. The Catalog The catalog is the set of posts handed to the LLM as context. It is the union of several queries, merged and deduplicated by post ID: Every published post of a supported post type. These can be cited, so they appear under Sources in an answer. Every private post assigned to the default term of the AI Catalog taxonomy. These are background material: their text is used to answer everyone, but they are never cited and never linked. Use this for internal knowledge you do not want as a standalone public page. To add sources of your own — other post types, a taxonomy filter, a meta condition — use the hamelp_catalog_sources filter. Each source is a get_posts() argument array plus a citable flag; earlier sources win on duplicates. add_filter( 'hamelp_catalog_sources', function ( $sources ) { $sources['pages'] = [ 'args' => [ 'post_type' => [ 'page' ], 'post_status' => [ 'publish' ], ], 'citable' => true, ]; return $sources; } ); Using the Block Add the AI FAQ Overview block in the block editor. The block has the following options: Placeholder — Input placeholder text. Button Text — Submit button label. Show Sources — Display related FAQ links below the answer. Using the Template Function You can also use hamelp_render_ai_overview() in your theme templates: The function accepts an optional array of arguments: 'Ask a question...', 'button_text' => 'Ask AI', 'show_sources' => true, ] ); ?> The function automatically enqueues the required JavaScript and CSS assets. Search Box The incremental FAQ search box is available in three forms. Using the Block Add the FAQ Search Box block in the block editor. The block has the following options: Label — Input placeholder text. Button Text — Submit button label. Using the Shortcode You can use shortcode hamelp-search in page content. [hamelp-search label='Enter your question here.'][/hamelp-search] Using the Template Function You can also call hamelp_render_search_box() directly from your theme templates: 'Enter your question here.', 'btn' => 'Search', ] ); ?>