Skip to content

Instantly share code, notes, and snippets.

@atomjoy
Last active September 17, 2024 17:02
Show Gist options
  • Save atomjoy/91e4df2a651df12a6540e99d28ecb974 to your computer and use it in GitHub Desktop.
Save atomjoy/91e4df2a651df12a6540e99d28ecb974 to your computer and use it in GitHub Desktop.
Create shareable social links for url in WordPress.
<?php
/**
* Create shareable social links for url.
*
* Fontawesome required for icons
* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
*
* @param string $url Post url get_permalink()
* @param string $class Css class
*/
function shareSocial($url, $class = 'social-link-share') {
$socials = [
'facebook' => 'https://www.facebook.com/sharer/sharer.php?u=',
'x-twitter' => 'https://x.com/intent/tweet?url=',
'pinterest' => 'https://pinterest.com/pin/create/button/?url=',
'linkedin' => 'https://www.linkedin.com/shareArticle?mini=true&url=',
'reddit' => 'https://reddit.com/submit?url=',
'tumblr' => 'https://www.tumblr.com/widgets/share/tool?canonicalUrl=',
'weibo' => 'https://service.weibo.com/share/share.php?url=',
'telegram' => 'https://t.me/share/url?url=',
'vk' => 'https://vk.com/share.php?url=',
'whatsapp' => 'https://api.whatsapp.com/send?text=',
];
echo '<a href="mailto:?subject=Shared link&body='.urlencode($url).'" class="'.$class.'"><i class="fa-regular fa-envelope"></i></a>';
foreach ($socials as $k => $v) {
echo '<a href="'.$v.urlencode($url).'" class="'.$class.'" target="_blank" title="Share '.$k.'"><i class="fa-brands fa-'.$k.'"></i></a>';
}
}
<div class="share-socials">
<div class="title"><?php echo __('Social share'); ?></div>
<?php
shareSocial(get_permalink());
?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment