1,000+
July 1, 2026
August 11, 2025
AI Share & Summarize turns every post into an AI-aware destination. It generates an inline AI summary readers can expand next to the share buttons, and offers one-click sharing to every major social network and the leading AI assistants.
Among the first plugins to integrate the native WordPress 7.0 AI Connectors API: configure your AI provider once in Settings > Connectors (OpenAI, Anthropic, Google) and the plugin reuses those credentials — no API keys to manage, no extra accounts.
<details>, data-nosnippet and Schema.org CreativeWork microdata so search engines treat it as derived content, not competition.[ayudawp_aiss_summary] shortcode also available.<a rel="nofollow"> or <button>, auto-exclusion on noindex content for all major SEO plugins).This plugin connects to third-party AI providers only when the inline AI Summary feature is enabled and an AI Connector is configured (or the WP AI Client is available). All other features — social and AI share buttons, click analytics, the extractive PHP fallback summary — run entirely on your own server and do not contact any external service.
When a post is saved (or when the editor / a visitor explicitly clicks “Regenerate” or “Generate AI summary”), the plugin uses the WordPress 7.0 AI Client (wp_ai_client_prompt()) to request a short summary from whichever provider you configured in Settings > Connectors. The plugin never stores your API keys — they are managed centrally by WordPress core.
What is sent:
What is not sent: API keys (managed by core Connectors), visitor IP addresses, user accounts, analytics data, or any other personal data of your readers.
Possible destinations (depending on which Connector your administrator activates):
If you do not configure any Connector, or your WordPress version is below 7.0, the plugin falls back to the local PHP extractive summarizer and no external request is made.
The social and AI sharing buttons render as <a> / <button> elements that open the respective destination only when the visitor clicks them — your server does not contact those services. The plugin’s analytics endpoint that records button clicks runs locally on your own site.
The [ayudawp_share_buttons] shortcode accepts several parameters:
buttons: Comma-separated list of buttons to display
– Example: [ayudawp_share_buttons buttons="claude,chatgpt,deepseek,twitter,mastodon"]
– Available: twitter, linkedin, facebook, telegram, whatsapp, email, raindrop, reddit, bluesky, line, mastodon, threads, pinterest, claude, chatgpt, google_ai, gemini, grok, perplexity, deepseek, mistral, copilot, qwen, meta_ai
style: Visual style to use
– Example: [ayudawp_share_buttons style="outline"]
– Options: minimal, brand, outline, dark, custom, icons-only
size: Button size preset
– Example: [ayudawp_share_buttons size="compact"]
– Options: compact, normal, large, fluid
show_icons: Show icons with text (for non-icons-only styles)
– Example: [ayudawp_share_buttons show_icons="true" style="brand"]
– Options: true, false
icon_style: Icon corner style (for icons-only mode)
– Example: [ayudawp_share_buttons style="icons-only" icon_style="circular"]
– Options: circular, square
alignment: Button alignment
– Example: [ayudawp_share_buttons alignment="center"]
– Options: left, center
show_title: Show or hide the section title
– Example: [ayudawp_share_buttons show_title="false"]
– Options: true, false
title_text: Custom title text
– Example: [ayudawp_share_buttons title_text="Share this content"]
title_style: Title HTML element
– Example: [ayudawp_share_buttons title_style="h3"]
– Options: h3, h4, h5, h6, span
ai_title: Section title for AI buttons group
– Example: [ayudawp_share_buttons ai_title="Summarize with AI"]
social_title: Section title for social buttons group
– Example: [ayudawp_share_buttons social_title="Share on social media"]
Combined examples:
[ayudawp_share_buttons buttons="claude,deepseek,twitter" style="brand" show_icons="true"]
[ayudawp_share_buttons style="icons-only" icon_style="circular"]
[ayudawp_share_buttons show_title="true" title_text="Share or Summarize" title_style="h3"]
[ayudawp_share_buttons ai_title="Summarize with AI" social_title="Share" style="outline" show_icons="true"]
[ayudawp_share_buttons buttons="chatgpt,qwen,meta_ai,mastodon,threads" size="compact" style="brand"]
[ayudawp_share_buttons style="icons-only" icon_style="square" size="large"]
[ayudawp_share_buttons size="fluid" style="outline" show_icons="true"]
The [ayudawp_aiss_summary] shortcode renders the AI-generated summary as a standalone collapsible block. Useful when you want to place the summary somewhere other than where the share buttons are auto-inserted, or when you have buttons disabled but still want to surface the summary.
post_id: Render the summary of a specific post
– Example: [ayudawp_aiss_summary post_id="123"]
– Defaults to the current post in the loop when omitted
The shortcode outputs nothing when the post has no stored summary, so it is safe to drop into templates without conditional wrappers.
The plugin uses CSS custom properties for all brand colors. You can override these in your theme to change any platform color globally:
Override platform colors:
.ayudawp-share-buttons {
–ayudawp-claude: #ff0000;
–ayudawp-chatgpt: #00ff00;
}
Main container classes:
– .ayudawp-share-buttons – Main wrapper container
– .ayudawp-buttons-container – Direct container for all buttons
– .ayudawp-title – Title element before buttons
– .ayudawp-section-title – Section title with extra top margin
– .ayudawp-aiss-centered – Applied when centered alignment is enabled
Button classes:
– .ayudawp-share-btn – Base class for all buttons (both <a> and <button> elements)
– .ayudawp-icon-wrapper – Container for button icons
– .ayudawp-button-text – Text label inside buttons
– .ayudawp-icon – SVG icon element
Style modifier classes:
– .brand – Brand colors style
– .outline – Outline style (brand-colored borders)
– .minimal – Minimal style
– .dark – Dark background style
– .custom – Custom colors style
– .icons-only – Icons-only mode
– .with-icons – Text buttons with icons
– .circular – Circular icon buttons
– .square – Square icon buttons
Size modifier classes:
– .size-compact – Compact button size
– .size-large – Large button size
– .size-fluid – Fluid width buttons
Platform-specific classes (on buttons):
– .twitter, .linkedin, .facebook, .telegram, .whatsapp
– .email, .raindrop, .reddit, .bluesky, .line
– .mastodon, .threads, .pinterest
– .claude, .chatgpt, .google-ai, .gemini, .grok
– .perplexity, .deepseek, .mistral, .copilot
– .qwen, .meta-ai
– .ai – Applied to all AI platform buttons
Example: Change Claude button color:
.ayudawp-share-buttons {
–ayudawp-claude: #your-color;
}
Example: Change all AI buttons background:
.ayudawp-share-buttons .ayudawp-share-btn.ai {
background: #f0f0f0;
}
Example: Hide specific button:
.ayudawp-share-btn.facebook {
display: none;
}
Customize or remove separator lines:
The main container has top and bottom border lines. You can hide or replace them:
.ayudawp-share-buttons {
border-top: none;
border-bottom: none;
}
Hide only the top separator:
.ayudawp-share-buttons {
border-top: none;
}
Replace with your own style:
.ayudawp-share-buttons {
border-top: 2px dashed #ccc;
border-bottom: 2px dashed #ccc;
}
Important notes:
– Since v1.6.0, !important is no longer needed for most overrides
– Use CSS custom properties to change brand colors cleanly
– Test on both desktop and mobile viewports
– Icons-only buttons have fixed dimensions (44px default, 36px compact, 54px large)
Do you need one-on-one help, priority troubleshooting, or a custom feature, integration, or tweak built specifically for your site? I offer private support and custom development. Just contact me and tell me what you need.
Love the plugin? Please leave us a 5-star review and help spread the word!
We are specialists in WordPress security, SEO, AI and performance optimization plugins. We create tools that solve real problems for WordPress site owners while maintaining the highest coding standards and accessibility requirements.
Manual insertion with shortcode:
– Share buttons: [ayudawp_share_buttons]
– AI summary block: [ayudawp_aiss_summary] or [ayudawp_aiss_summary post_id="123"]
– Specific buttons: [ayudawp_share_buttons buttons="claude,twitter,linkedin,deepseek,mastodon"]
– Custom style: [ayudawp_share_buttons style="minimal" show_title="false"]
– With icons: [ayudawp_share_buttons show_icons="true" style="brand"]
– Icons only: [ayudawp_share_buttons style="icons-only"]
– Circular icons: [ayudawp_share_buttons style="icons-only" icon_style="circular"]
– Custom title: [ayudawp_share_buttons title_text="Share or Summarize" title_style="h3"]
– Section titles: [ayudawp_share_buttons ai_title="Summarize with AI" social_title="Share on social media"]
– Button size: [ayudawp_share_buttons size="compact"]
– Outline style: [ayudawp_share_buttons style="outline" show_icons="true"]
Per-post controls (block editor sidebar / classic meta box):
– Hide share buttons on this specific post
– View, edit and regenerate the AI summary on demand
– Manually-edited summaries are locked against auto-regeneration
Yes, AI Share & Summarize is 100% free with all features included, including support for all social networks, AI platforms, and the full analytics dashboard with CSV export.
When you publish or update a post, the plugin generates a short summary asynchronously (in a background WP-Cron event, to avoid blocking the editor save). The summary then appears inline next to the share buttons, inside a collapsible block. Visitors can expand it without leaving the page. You can disable the feature globally in Settings > AI Share & Summarize > AI Summary, choose where the summary is placed (before/after the buttons, or before the content), and override or edit the text per post from the editor sidebar.
The AI Summary generation setting is a single selector with four modes: AI with extractive fallback (recommended), AI only, Extractive only (never contacts a provider), and Disabled. The AI model selector lists the models your configured providers expose; leave it on Automatic to let the plugin pick a fast, cost-effective model per provider instead of the newest, most expensive flagship.
You don’t configure keys in this plugin. The summary feature relies on the WordPress 7.0 AI Client introduced in core, which manages credentials centrally in Settings > Connectors. Configure your preferred provider (OpenAI, Anthropic, Google) there once and every plugin on the site — including this one — uses those credentials.
On WP < 7.0 (or 7.0+ without a Connector configured), the plugin falls back to a PHP extractive summarizer: it picks the most representative sentences from your content based on word frequency. The result is labelled “Basic summary” in the frontend so readers know it isn’t AI-generated. You can disable the fallback if you only want AI-quality summaries.
That tag appears when the summary was produced by the PHP extractive fallback instead of the WP AI Client. This happens when WordPress 7.0 is not installed, when no AI Connector is configured in Settings > Connectors, or when the AI provider call returned an error. Configure a Connector and republish the post to get an AI-generated summary; the “Basic summary” label disappears automatically.
Only when the WP AI Client integration is active. In that case, the post content (title plus up to ~3000 characters of body text) is sent to whatever provider you configured in Settings > Connectors (OpenAI, Anthropic or Google). The PHP extractive fallback runs entirely on your server and never sends data anywhere. You can disable AI generation completely in the plugin settings to keep everything local.
If you have the canonical AI plugin from wordpress.org installed, go to Tools > Connector Approvals and make sure the toggle next to “AI Share & Summarize” is enabled for your provider. That plugin’s approval system intercepts outbound AI requests and silently blocks any plugin it hasn’t approved yet. When this is the likely cause, the plugin’s settings page surfaces a direct link to the approvals screen alongside the standard error message.
The analytics dashboard tracks every button click on your site, showing you which platforms are most popular and which content gets the most engagement. You can filter by date range (7 to 365 days or custom dates), compare with a previous period, the same period last year, or custom dates, and view data in timeline charts, platform tables, and content performance tables. Stat cards show percentage changes when comparison is active. You can download data as CSV files from the export dropdown. A dashboard widget provides a quick 7-day summary right on your WordPress admin homepage.
In the Analytics tab, use the date filter to select the period you want, then click the “Export CSV” button to open the export menu. Choose “Current period” for a full breakdown (date, platform, type, post title, URL, clicks) or “Timeline summary” for a daily totals export. When period comparison is active, the timeline export automatically includes comparison columns (date, clicks, comparison date, comparison clicks, difference, change percentage). Files download immediately and can be opened in Excel, Google Sheets, or any spreadsheet application.
VigIA is a free WordPress plugin by AyudaWP that monitors AI crawler visits to your site — tracking bots like GPTBot (ChatGPT), ClaudeBot, PerplexityBot and 50+ more. When VigIA is active alongside AI Share & Summarize, the analytics dashboard shows an additional panel where you can cross-reference your share button clicks with AI crawler activity. This lets you see, for example, whether a spike in Claude clicks correlates with increased ClaudeBot crawling of that content. You can install VigIA directly from the plugin screen.
No. The plugin is ultra-optimized with a modular structure and lightweight SVG icons that load instantly. Frontend CSS and JavaScript only load on pages where share buttons are actually displayed — posts with buttons disabled via the meta box do not load any plugin assets.
Edit the post or page where you want to hide buttons, find the “AI Share & Summarize” meta box in the sidebar, and check “Hide share buttons on this content”. This works with both the classic editor and the block editor.
Yes! The plugin integrates with major SEO plugins (Yoast, Rank Math, All in One SEO, SEOPress, The SEO Framework) and the NoIndexer plugin. Enable the “Exclude noindex content” option in settings to automatically hide buttons on content marked as noindex.
Google AI uses the new AI Mode available in most countries, launching the AI response automatically with your prompt. Gemini uses the traditional method (copy prompt and open Gemini) which still works everywhere. Choose based on availability in your region or user preference.
Both options are valid:
– Links with nofollow (default): Better user experience, allows right-click to copy link, works without JavaScript
– Button elements: Not counted as links by search engines, cleaner link profile, reduces crawl budget usage
The nofollow attribute already prevents PageRank transfer, so the SEO impact is minimal. Choose based on your specific needs.
You can set separate headings for the AI and Social button groups. When either section title is filled in, the general title disappears and each group gets its own heading. If both section titles are left empty, the general title works as before. When using the “Mixed” button order, the general title is always displayed regardless of section titles, since both groups are interleaved. You can also set section titles via shortcode: [ayudawp_share_buttons ai_title="Summarize" social_title="Share"]
Since Mastodon is a federated network, the share link needs to point to your specific instance. Set your Mastodon server domain (e.g. mastodon.social, fosstodon.org) in the plugin settings. The share button will then open the compose screen on your instance with the post title and URL pre-filled.
Yes, you can choose from 6 predefined styles:
– Minimal (default): Clean transparent design with borders
– Brand: Each platform’s characteristic colors
– Outline: Brand-colored borders with transparent background, fills on hover
– Dark: Optimized for dark backgrounds
– Custom colors: Pick your own background and text colors with a color picker
– Icons-only: Modern style showing only platform icons
Yes, four sizes are available:
– Compact: Smaller buttons for tight layouts
– Normal: Standard size (default)
– Large: Bigger buttons for more prominent display
– Fluid: Buttons expand to fill available container width
The icon system uses official brand SVG paths from Simple Icons where available, ensuring accurate and recognizable platform logos. Options include:
– Icons with text: Add icons to the left of button text in any style
– Icons-only: Show only icons in circular or square buttons
– Smart tooltips: Platform names appear when hovering over any button
– Responsive: Icons automatically adapt to screen size
Yes, you can:
– Change the text to anything you want
– Choose the HTML element: h3, h4, h5, h6, or span
– Hide the title completely by leaving the text field empty
– Set separate titles for AI and Social groups
You have complete control:
– Before content: Buttons appear before the post text
– After content: Buttons appear after the post text
– Both positions: Buttons in both locations
– Disabled: Use only shortcode [ayudawp_share_buttons]
Plus, you choose exactly which content types display buttons.
Absolutely. You can select from all post types registered in your WordPress:
– Posts, pages, WooCommerce products
– Custom Post Types (portfolios, testimonials, etc.)
– Complete per content type control
In Settings > AI Share & Summarize you’ll find:
– Default prompt: Pre-optimized for best results with citation
– Custom text field: Add personalized text to all AI prompts
– X handle: Configure automatic mentions in social shares
– The plugin automatically adds your content URL as source
We continuously monitor and update all AI links to ensure they work correctly. The plugin receives regular updates to maintain compatibility.
Yes, with the shortcode you can display only the buttons you want:
[ayudawp_share_buttons buttons=”claude,chatgpt,deepseek,twitter,mastodon,threads”]
Yes. The plugin does not collect any personal user data. The analytics system only records anonymous click events — platform name, post ID, and date — with no user identification, IP address, or session data stored at any point. Analytics data is retained in your own database for as long as you keep the plugin active. If you uninstall the plugin with the “Delete all plugin data” option enabled, all analytics records are permanently removed along with the rest of the plugin data.
Google AI has direct integration:
– Clicking the button opens Google’s AI Mode with your prompt
– The AI automatically processes the prompt and shows results
– Works in most countries where AI Mode is available
LINE is extremely popular in Asian markets (Japan, Taiwan, Thailand). The plugin allows sharing your content directly to LINE, helping you reach millions of users in these regions.
Google AI Mode has a default behavior of responding in English regardless of browser or site language. To get responses in your preferred language, add a custom instruction in the plugin settings.
Go to Settings > AI Share & Summarize > “Custom text in prompts” and add:
Deliver the response in Spanish (or your preferred language)
This instruction will be added to all AI prompts, ensuring responses match your language preference.
Gemini has a special behavior:
– Clicking the button automatically copies the prompt to clipboard
– Opens Gemini in a new tab
– User can paste the prompt directly and get the summary
DeepSeek, Copilot, Qwen, and Meta AI work the same way as Gemini:
– Clicking the button automatically copies the prompt to clipboard
– A notification appears confirming the copy
– The platform opens in a new tab
– User can paste the prompt with Ctrl+V and get the summary
This approach is used because these platforms don’t support URL parameters for prompts.
Yes, it’s compatible with:
– Gutenberg (WordPress block editor)
– Elementor, Beaver Builder, Divi
– Any page builder that respects WordPress hooks
– Manual insertion via shortcode works everywhere
Yes, set automatic insertion to “Disabled” in settings and use only the shortcode [ayudawp_share_buttons] where you want buttons to appear.
By default, your settings are preserved even after uninstalling. However, you can enable the “Delete all plugin data when plugin is deleted” option in the Data cleanup section if you want automatic cleanup. This will also delete all analytics data stored in the database.
The plugin detects and integrates with:
– Yoast SEO
– Rank Math
– All in One SEO
– SEOPress
– The SEO Framework
– NoIndexer
When enabled, buttons will automatically be hidden on content marked as noindex in any of these plugins.
For older changelog entries, please check the changelog.txt file
| Version | Download | Type |
|---|---|---|
| 2.2.1 | Download | Stable |
| 2.2.0 | Download | Stable |
| 2.1.1 | Download | Stable |
| 2.1.0 | Download | Stable |
| 2.0.4 | Download | Stable |
| 2.0.3 | Download | Stable |
| 2.0.2 | Download | Stable |
| 2.0.1 | Download | Stable |
| 2.0.0 | Download | Stable |
| 1.9.2 | Download | Stable |
| 1.9.1 | Download | Stable |
| 1.9.0 | Download | Stable |
| 1.8.0 | Download | Stable |
| 1.7.4 | Download | Stable |
| 1.7.3 | Download | Stable |
| 1.7.2 | Download | Stable |
| 1.7.1 | Download | Stable |
| 1.7.0 | Download | Stable |
| 1.6.2 | Download | Stable |
| 1.6.1 | Download | Stable |
| 1.6.0 | Download | Stable |
| 1.5.5 | Download | Stable |
| 1.5.4 | Download | Stable |
| 1.5.3 | Download | Stable |
| 1.5.2 | Download | Stable |
| 1.5.1 | Download | Stable |
| 1.5.0 | Download | Stable |
| 1.4.1 | Download | Stable |
| 1.4.0 | Download | Stable |
| 1.3.1 | Download | Stable |
| 1.3.0 | Download | Stable |
| 1.2.1 | Download | Stable |
| 1.2.0 | Download | Stable |
| 1.1.4 | Download | Stable |
| 1.1.3 | Download | Stable |
| 1.1.2 | Download | Stable |
| 1.1.1 | Download | Stable |
| 1.1.0 | Download | Stable |
| 1.0.9 | Download | Stable |
| 1.0.8 | Download | Stable |
| 1.0.7 | Download | Stable |
| Development | Download | Trunk |