Skip to content

Instantly share code, notes, and snippets.

@sophiawzey
Last active February 27, 2020 18:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sophiawzey/70e8ff57472dd25664318af66871d516 to your computer and use it in GitHub Desktop.
Save sophiawzey/70e8ff57472dd25664318af66871d516 to your computer and use it in GitHub Desktop.
[social share]
<?php
/**
* Social Share buttons
*/
$actual_link = urlencode( (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]");
$title = get_the_title();
?>
<div class="share-buttons">
<a href="https://www.facebook.com/sharer.php?u=<?= $actual_link ?>" class="share-button" target="_blank"><span class="fab fa-facebook-f"></span></a>
<a href="https://twitter.com/share?text=<?= $title ?>&url=<?= $actual_link ?>" class="share-button" target="_blank"><span class="fab fa-twitter"></span></a>
<a href="https://www.linkedin.com/shareArticle?mini=true&url=<?= $actual_link ?>" class="share-button" target="_blank"><span class="fab fa-linkedin-in"></span></a>
<a href="mailto:?subject=[SUBJECT]&body=Check out this site <?= $actual_link ?>" class="share-button"><span class="fas fa-envelope"></span></a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment