This is how I render my button:
function fb_share() {
$permalink = get_permalink();
echo '<div class="fb-share-button" data-href="'.$permalink.'" data-layout="button_count"></div>';
}
I include the scripts right after tag opens. However, what it does when you click share is:
Any thoughts?
The problem arises because I have been testing my theme using MAMP and having the string "localhost" in the browser URL. As @dustincaruso mentioned:
works perfectly. Thanks.