AI Share & Summarize
AI Share & Summarize
Description
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.
Inline AI Summary
- Two-tier cascade: Level A uses the WordPress 7.0 AI Client; Level C is a built-in PHP extractive fallback with zero API cost on any WP 6.1+ install.
- Choose your AI model and mode: pick the provider and model used to generate summaries, or leave it on Automatic to use a fast, cost-effective model instead of the newest, most expensive one. Set how generation behaves too: AI with extractive fallback, AI only, extractive only, or disabled.
- Collapsible inline block with native
<details>,data-nosnippetand Schema.orgCreativeWorkmicrodata so search engines treat it as derived content, not competition. - Editor controls in the block sidebar and the classic meta box: view, edit manually, regenerate on demand.
- Visitor-facing “Generate AI summary” button for posts without a stored summary, restrictable to extractive-only or open to the AI Client.
- Async generation via WP-Cron.
[ayudawp_aiss_summary]shortcode also available.
Sharing
- Social networks: X (Twitter), LinkedIn, Facebook, Telegram, WhatsApp, Email, Raindrop, Reddit, Bluesky, LINE, Mastodon, Threads, Pinterest.
- AI assistants: Claude, ChatGPT, Google AI, Gemini, Grok, Perplexity, DeepSeek, Mistral, Copilot, Qwen, Meta AI — each opens with a citation-ready prompt linking back to your URL.
- 6 visual styles, 4 sizes, custom colors, brand SVG icons, dark-mode auto-adaptation, drag-and-drop ordering. SEO-friendly (
<a rel="nofollow">or<button>, auto-exclusion on noindex content for all major SEO plugins).
Analytics
- Click tracking per platform and per post, timeline chart with per-platform breakdown, period comparison (previous period, same period last year, custom range), CSV export.
- Dashboard widget with 7-day sparkline. VigIA cross-reference (clicks vs. AI crawler visits) when active. Redis/Memcached compatible.
Why use it?
- Cite your source naturally: when readers expand the summary or share to an AI assistant, your URL travels with the content.
- Reach every audience: full social spectrum plus 11 AI assistants in one place.
- Future-proof: built on WP 7.0 Connectors and a REST API ready for agentic clients.
External services
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.
AI Summary generation
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:
- Post title (plain text)
- Post content (HTML stripped, up to ~3000 characters of plain text)
- A short instruction asking the provider to return a summary
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):
- OpenAI — Terms of use · Privacy policy
- Anthropic — Terms of service · Privacy policy
- Google AI — Terms of service · Privacy policy
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.
How to opt out
- Disable the feature in Settings > AI Share & Summarize > AI Summary (uncheck “Enable AI Summary”).
- Or keep AI Summary enabled but uncheck “Use extractive fallback” while leaving no Connector configured — no requests will be sent, and summaries simply won’t be generated.
- The visitor-facing “Generate AI summary” button is off by default; if enabled, you can additionally restrict it to the extractive PHP path so visitor clicks never reach an external provider.
Sharing buttons
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.
Advanced Usage
Shortcode parameters
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"]
AI summary shortcode
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.
CSS Customization Guide
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)
Technical Details
System requirements
- WordPress 5.0 or higher
- PHP 7.4 or higher (compatible up to PHP 8.4)
- Theme compatible with wp_head() and wp_footer()
Performance features
- Modular file structure for maximum efficiency
- Selective loading of resources (CSS/JS only where buttons display)
- No external dependencies
- Optimized CSS with custom properties and minimal specificity
- Lightweight SVG icons (under 1KB each)
- Minimal database impact: analytics queries are cached (5 min) and compatible with persistent object cache (Redis, Memcached)
- Smart responsive layouts
- REST API for lightweight analytics data retrieval
Developer features
- Clean, documented code
- WordPress coding standards compliant
- Hook-based architecture
- Modular class structure in /includes folder
- Extensible icon system using Simple Icons
- Translation ready
- Comprehensive shortcode API
- SEO-friendly markup options
- Post meta for individual exclusions
- Centralized platform color definitions
Support
Need help or have suggestions?
Love the plugin? Please leave us a 5-star review and help spread the word!
About AyudaWP
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.
Installation
Automatic installation
- Go to Plugins > Add New in your WordPress admin
- Search for “AI Share & Summarize”
- Click “Install Now” and then “Activate”
- Go to Settings > AI Share & Summarize to configure
Manual installation
- Download the plugin ZIP file
- Go to Plugins > Add New > Upload Plugin
- Select the ZIP file and click “Install Now”
- Activate the plugin
- Configure in Settings > AI Share & Summarize
Complete setup
- Go to Settings > AI Share & Summarize
- Select enabled buttons: Choose which social networks and AIs to display
- Configure automatic insertion:
- Choose position: Before content, after, both, or disabled (shortcode only)
- Select content types: Posts, pages, products, or any Custom Post Type
- Configure SEO integration: Enable/disable automatic exclusion of noindex content
- Customize AI prompt: Modify the default text if desired (excellent default included)
- Configure title: Change the text before buttons and choose heading style
- Set section titles: Optionally set separate titles for AI and Social groups
- Configure X mentions: Add your X (Twitter) handle for automatic mentions
- Set Mastodon instance: Enter your Mastodon server domain if using Mastodon
- Choose visual style: Minimal, brand colors, outline, dark, custom colors, or icons-only
- Set button size: Compact, normal, large, or fluid
- Pick custom colors: Use the color picker when “Custom colors” style is selected
- Configure icons: Enable icons for text styles or use pure icons-only mode
- Set icon shape: Choose circular or square corners for icons-only buttons
- Set button order: Social first, AI first, or mixed — drag & drop to reorder within each group
- Configure SEO settings: Choose between links with nofollow or button elements
- Configure data retention: Set retention period and optionally delete all data when plugin is uninstalled
- Configure AI Summary:
- Enable the inline AI summary feature
- Choose position (before / after the buttons, before the content, or disabled)
- Pick the post types where summaries should be generated (independent from the buttons’ list)
- Optionally enable the visitor-facing “Generate AI summary” button for posts without a stored summary
- On WordPress 7.0+, configure your AI provider in Settings > Connectors (the plugin reuses those credentials — no API keys to manage here)
- Save changes
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
Screenshots

Inline AI summary collapsible block above the share and AI buttons on a post

Mobile responsive view

Plugin settings for social and AI sharing buttons

Prompt opened on ChatGPT

Editor controls box: hide buttons or manage the AI summary

SEO integration setting with detected SEO plugin

Analytics dashboard with timeline chart and platform breakdown

Period comparison with timeline overlay and stat card indicators

Dashboard widget with sparkline and top platforms

AI Summary settings with WP 7.0 AI Client status and Connectors link

Visitor-facing "Generate AI summary" button for posts without a stored summary
Faq
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.
Reviews
Súper útil
By ebenito on May 15, 2026
Cumple 100% su cometido, y mejora con cada nueva actualización. Y además sin publicidad intrusiva y molesta.
Se nota quién es el crack que hay detrás!
Nice
By newtonvibe on May 6, 2026
Many features.
Amazing plugin
By Charlie Ray on April 30, 2026
Very good plugin, useful and very easy to install and customise! The support is also amazing!
Powerful and innovative AI sharing plugin
By SEO Consult (seoconsult) on March 27, 2026
This is an outstanding plugin that brings something truly unique to WordPress. The combination of traditional social sharing with AI-powered summarization is incredibly useful and forward-thinking.
What I really like is how many AI platforms are supported (ChatGPT, Gemini, Claude, Perplexity, and more), making it easy to generate summaries with proper source attribution. The customization options are excellent - from button styles and sizes to full control over placement and design.
The built-in analytics dashboard is another big plus. Being able to track clicks by platform and content adds real value for anyone focused on growth and optimization. Despite all these features, the plugin remains lightweight, fast, and very easy to configure.
It works perfectly out of the box, integrates well with SEO plugins, and offers a level of flexibility that both beginners and advanced users will appreciate.
Highly recommended - especially considering it’s completely free!
Muy buen plugins
By dattamaster2016 on January 29, 2026
Me encanta, excelente trabajo. Muy facil de usar y de configurar.
Muchas gracias, saludos Michel
Easy one
By Alvaro Torres (algato333) on January 16, 2026
It makes an easier live
Grande Fernando !
By Alain Aubry (caban13) on March 20, 2026
Gusté mucho de este plugin, simple y directo al punto.
Ahora lo tengo en producción, es fantástico! Reemplazó Shariff que llevaba años usando!
Permite ver cada pagina que comparten y en que plataforma. Estimula a compartir.
Great free plugin
By Héctor Tellado (hectortellado) on January 12, 2026
For a free plugin this is jsut great, has everything
Muy fácil de usar y muy útil
By tlozano on January 4, 2026
Hace lo que dice, y lo hace muy bien. Es fácil de usar y el resultado es bueno. Gracias.
Easy and awesome
By Hasan (hasanlebaesa) on December 27, 2025
Could you please add LINE for social media?
Changelog
2.2.0
- New: AI model selector for the summary. Pick the provider and model used for generation, or leave it on Automatic to use a fast, cost-effective model per provider instead of the newest, most expensive flagship.
- Improved: AI Summary generation is now a single, explicit mode selector (AI with extractive fallback / AI only / Extractive only / Disabled), replacing the two checkboxes. Extractive-only is now a real choice without removing your AI provider.
- Fix: summaries could fail when the configured provider’s newest model was not available to your account (for example a limited-access flagship). Generation now defaults to a sensible model and no longer breaks in that case.
- Fix: prevented a possible fatal error during analytics cleanup on WordPress older than 6.1, so the minimum is now WordPress 6.1. The AI summary needs WordPress 7.0; on earlier versions you can still use the extractive summary.
For older changelog entries, please check the changelog.txt file