Skip to content

Instantly share code, notes, and snippets.

@adriandmitroca
Last active February 17, 2020 13:43
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 adriandmitroca/1271ef28478e83a4bfa433fe7d2faf9d to your computer and use it in GitHub Desktop.
Save adriandmitroca/1271ef28478e83a4bfa433fe7d2faf9d to your computer and use it in GitHub Desktop.
WordPress - Social Share Example
<ul>
<li><a href="https://www.facebook.com/sharer/sharer.php?u=<?= rawurlencode(get_permalink()) ?>" target="_blank" rel="noopener noreferrer">Facebook</a></li>
<li><a href="https://twitter.com/intent/tweet?status=<?= rawurlencode(get_the_title() . ' ' . get_permalink()) ?>" target="_blank" rel="noopener noreferrer">Twitter</a></li>
<li><a href="mailto:?subject=<?= rawurlencode(get_the_title()) ?>&body=<?= rawurlencode(get_permalink()) ?>">Email</a></li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment