Skip to content

Instantly share code, notes, and snippets.

@yanknudtskov
Created November 21, 2014 09:47
Show Gist options
  • Save yanknudtskov/b8ca9f7617b502a78693 to your computer and use it in GitHub Desktop.
Save yanknudtskov/b8ca9f7617b502a78693 to your computer and use it in GitHub Desktop.
Generate a Facebook Share Button
function get_facebook_share_button($url, $share_message = '') {
$output = '';
$output = '<a class="facebook-share" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u='.$url.'" alt="'.$share_message.'" title="'.$share_message.'"></a>';
return $output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment