Skip to content

Instantly share code, notes, and snippets.

@ImtiazEpu
Created October 23, 2021 16:45
Show Gist options
  • Save ImtiazEpu/ab09a650f423ad8b495bd259070c30c4 to your computer and use it in GitHub Desktop.
Save ImtiazEpu/ab09a650f423ad8b495bd259070c30c4 to your computer and use it in GitHub Desktop.
<?php
$link = get_the_permalink();
$title = get_the_title();
$text_encoded =urlencode($title);
$fb_link = add_query_arg('u', urlencode($link), 'https://www.facebook.com/sharer/sharer.php');
$tw_link = add_query_arg('status', $title.' '.urlencode($link), 'https://twitter.com/home');
$ln_link = add_query_arg(array(
'url' => urlencode($link),
'title' => urlencode($title),
'summary' => urlencode($title),
), 'https://www.linkedin.com/shareArticle?mini=true');
?>
<ul class="list-inline text-center pt-md-5">
<li class="list-inline-item"><a href="<?php echo esc_url($fb_link); ?>" target="_blank" class="d-inline-block text-primary text-center blogs-social"><i class="fab fa-facebook-f social-icon"></i></a></li>
<li class="list-inline-item"><a href="<?php echo esc_url($tw_link); ?>" target="_blank" class="d-inline-block text-primary text-center blogs-social"><i class="fab fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="<?php echo esc_url($ln_link); ?>" target="_blank" class="d-inline-block text-primary text-center blogs-social"><i class="fab fa-linkedin-in social-icon"></i></a></li>
<li class="list-inline-item"><a href="mailto:?subject=<?php echo $title; ?>&body=<?php echo urlencode( $link ) ?>" target="_blank"
class="d-inline-block text-primary text-center blogs-social"><i class="fas fa-envelope"></i></a></li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment