Skip to content

Instantly share code, notes, and snippets.

@cosminpopescu14
Last active February 3, 2018 08:17
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 cosminpopescu14/7d032cf2d9c0c39bbf378d9153bd798b to your computer and use it in GitHub Desktop.
Save cosminpopescu14/7d032cf2d9c0c39bbf378d9153bd798b to your computer and use it in GitHub Desktop.
code for linkedin share button
function wpb_linkedin_share_after($content) {
$sharecode .= '<script src="//platform.linkedin.com/in.js" type="text/javascript"> lang: en_US</script>
<script type="IN/Share" data-counter="top"></script>';
$newcontent = $content . $sharecode;
return $newcontent;
}
add_filter('the_content', 'wpb_linkedin_share_after');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment