Quick Fix: Want to add a social media sharing bar in under five minutes? Grab a free plugin like ShareThis (v2026) or AddToAny. Pick your favorite platforms (Facebook, X/Twitter, LinkedIn, Pinterest, WhatsApp), install the plugin, then paste the generated code right before the closing </body> tag. Done.
What happens if your site doesn’t have a sharer?
Visitors have to jump through hoops: copy the URL, open their social network, paste the link, write a message, and finally post. That friction can scare off up to 68 % of potential shares, based on a 2024 Nielsen Norman Group usability test Source. A social media sharer cuts out all that manual work by dropping a row of one-click icons that auto-fill the page title, URL, and even an image preview for each network.
How do you add a sharer in 2026?
Here’s the fastest way that still works today.
- Pick your weapon
- ShareThis (v2026) – free up to 10 k page views per month. Grab the script at ShareThis Buttons.
- AddToAny – open-source, no limits. Snag the code at AddToAny Buttons.
- Drop it into WordPress 6.5 (2026)
- Head to Dashboard → Plugins → Add New. Search for “ShareThis” or “AddToAny Share Buttons,” hit Install, then Activate.
- Navigate to Settings → ShareThis → check the boxes for Facebook, X, LinkedIn, Pinterest, WhatsApp, and Email.
- Drag the “Share Buttons” block into any post or page, or drop in the shortcode
[addtoany].
- For any other site (HTML, React, etc.)
- Paste the plugin code right before the closing
</body>tag. - Here’s a ShareThis example snippet:
<script type="text/javascript" src="https://platform-api.sharethis.com/js/sharethis.js#property=YOUR_PUB_ID&product=inline-share-buttons"></script>
- Paste the plugin code right before the closing
- Make sure it looks right
- Open an incognito window, load the page, and click each icon to confirm the share card fills in automatically.
Still not working?
- Icons missing – open the browser console (F12 → Console) and look for 404 errors on the script URL; grab a fresh copy from the plugin dashboard.
- Empty share card – your page needs Open Graph meta tags. Drop these in the
<head>:<meta property="og:title" content="Your Page Title"> <meta property="og:image" content="https://yoursite.com/image.jpg"> <meta property="og:url" content="https://yoursite.com/page">
- Tiny touch targets on mobile – in ShareThis settings, turn on “Responsive” and set the minimum icon size to 44 × 44 px to meet WCAG 2.2 contrast guidelines Source.
How can you keep sharing rates high in 2026?
- Test different spots – a 2025 HubSpot study found sticky sidebars boost shares by 22 % compared with floating bottom bars Source.
- Add tracking links – tack on
?utm_source=facebook&utm_medium=shareto the share URL so Google Analytics 4 can show you exactly where traffic is coming from. - Trim the fat every quarter – ditch platforms that drive less than 3 % of your traffic to keep the bar fast (Google PageSpeed Impact should stay under 0.3 s).
- Lock it in the footer – add the sharer block to your global footer template so every new blog post gets it automatically.