Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>
share|improve this question

4 Answers

You need to specify data-href="http://<<your blog url>>" to like blog instead of page.

For e.g.

<div class="fb-like" data-send="true" data-href="http://<<your blog url>>" data-layout="button_count" data-width="100" data-show-faces="false"></div>
share|improve this answer

Such like buttons are just refering to an URL.

If you want the buttons to have individual "likes", then you'll need to provide an unique URL for each one of them. (The URL of the post they are refering to.)

You set the URL with the data-href attribute on the <div class="fb-like" data-href="URL"....> element.

Note that http://example.com and https://example.com is TWO individual sites when it comes to like buttons.

share|improve this answer
Thank you! it works now! – Örjan Wirdheim Feb 4 '12 at 2:27
You're welcome :) – jack Feb 11 '12 at 14:11

These are close but in wordpress you'll want to call

<div class="fb-like" data-send="true" data-href="<?php the_permalink()?>" data-layout="button_count" data-width="100" data-show-faces="false"></div>

in your loop. That should set up the post to be likes.

share|improve this answer

I know exactly what you are looking for,

first have a look at my blog,

http://decentsms.com , I've done exaclty what you're looking for,

and now here is simplest way to achieve this,

Install this plugin,

http://wordpress.org/extend/plugins/like/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.