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 want to add a Like button to my page, but Like should belong to the fan page status, not to page I'm on it.

My idea is that I want to automatically add a link to a new article from WordPress to Facebook, and then I want the same like I have on Facebook, to have the amount of likes be synchronized.

Is it possible and how?

share|improve this question
1  
You cannot get like counts to synchronize for two different objects. For the objects to be the same, they must be the same URL. No way around this. – DMCS Feb 6 '12 at 16:31

2 Answers

You can specify the href attribute for a like button.

For example, this like button would like the Facebook page for Facebook:

<div class="fb-like" data-href="http://facebook.com/facebook" data-send="true" data-width="450" data-show-faces="true"></div>
share|improve this answer
yes but i need to specify to which status i need to do like button. – Marek Knappe Feb 6 '12 at 15:28

You should probably use the URL from the status ID. You can find this by right-clicking on the "... Hours ago" link on every Facebook status (gray color).

This will now be the same post_object.

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.