I'm working on this page and I use Wordpress as my CMS.
On the index.php page where all my posts show up I want to add a Facebook Like button underneath the title to instantly like a post without going to "Read More".
But when I click "Like" it likes all of my blogposts so all of them get +1. Is there any way to make the code ONLY like the content of that post the button is clicked?
I'm using the following code:
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1&appId=266693680020880";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-like" data-send="true" data-layout="button_count" data-width="100" data-show-faces="false"></div>