Skip to content

Instantly share code, notes, and snippets.

@waylay
Created January 19, 2017 08:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save waylay/8e006b8f4ea78d355455600ee8da2823 to your computer and use it in GitHub Desktop.
Save waylay/8e006b8f4ea78d355455600ee8da2823 to your computer and use it in GitHub Desktop.
Social sharing without JS
<div class="social-sharing">
<?php
$link = urlencode(get_permalink());
?>
<ul>
<li>Share this on...</li>
<li class="twitter"><a href="https://twitter.com/intent/tweet?url=<?php echo $link; ?>" target="_blank">Twitter</a></li>
<li class="facebook"><a href="https://facebook.com/sharer.php?u=<?php echo $link; ?>" target="_blank">Facebook</a></li>
<li class="google-plus"><a href="https://plus.google.com/share?url=<?php echo $link; ?>" target="_blank">Google+</a></li>
<li class="linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=<?php echo $link; ?>" target="_blank">LinkedIn</a></li>
<li class="reddit"><a href="http://reddit.com/submit?url=<?php echo $link; ?>" target="_blank">Reddit</a></li>
<li class="pinterest"><a href="http://pinterest.com/pin/create/button/?url=<?php echo $link; ?>" target="_blank">Pinterest</a></li>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment