Skip to content

Instantly share code, notes, and snippets.

@mdjwel
Last active July 25, 2018 18:01
Show Gist options
  • Save mdjwel/b942281ee0444ed9a2136155243f6279 to your computer and use it in GitHub Desktop.
Save mdjwel/b942281ee0444ed9a2136155243f6279 to your computer and use it in GitHub Desktop.
A collection of social site's share URL
<?php
function chaoz_social_share() { ?>
<a href="https://facebook.com/sharer/sharer.php?u=<?php the_permalink(); ?>"><i class="social_facebook"></i></a>
<a href="https://twitter.com/intent/tweet?text=<?php the_permalink(); ?>"><i class="social_twitter"></i></a>
<a href="https://www.pinterest.com/pin/create/button/?url=<?php the_permalink() ?>"><i class="social_pinterest"></i></a>
<a href="https://plus.google.com/share?url=<?php the_permalink() ?>"><i class="social_google_plus"></i></a>
<a href="https://www.linkedin.com/shareArticle?mini=true&url=<?php the_permalink() ?>"><i class="social_linkedin"></i></a>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment