Skip to content

Instantly share code, notes, and snippets.

@saqibsarwar
Last active June 10, 2022 06:35
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 saqibsarwar/243d93e1acde172c924f00287d0d8d10 to your computer and use it in GitHub Desktop.
Save saqibsarwar/243d93e1acde172c924f00287d0d8d10 to your computer and use it in GitHub Desktop.
<?php
$url_encoded_title = urlencode_deep( get_the_title() );
?>
<a href="https://www.linkedin.com/sharing/share-offsite/?url=<?php the_permalink(); ?>"
title="<?php esc_attr_e( 'Share on LinkedIn', 'domain' ); ?>"
target="_blank">
<span class="icon-linkedin-square"></span>
</a>
<a href="https://www.facebook.com/sharer/sharer.php?u=<?php the_permalink(); ?>&t=<?php echo $url_encoded_title; ?>"
title="<?php esc_attr_e( 'Share on Facebook', 'domain' ); ?>"
target="_blank">
<span class="icon-facebook-square"></span>
</a>
<a href="https://twitter.com/share?url=<?php the_permalink(); ?>&via=inspirythemes&text=<?php echo $url_encoded_title; ?>"
title="<?php esc_attr_e( 'Share on Twitter', 'domain' ); ?>"
target="_blank">
<span class="icon-twitter-square"></span>
</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment