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.

Okay so when I'm liking a post on my wordpress blog it's showing up on Facebook with the correct title and like to the post, but the thumbnail and description is wrong.

I'm using the following code for my likes:

<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-href="<?php the_permalink();?>" data-send="true" data-layout="button_count" data-width="100" data-show-faces="false"></div>

But as I said, the description is the same for all likes (only the URL for my wordpress blog), and the thumbnail is a random one from another post.

share|improve this question

1 Answer

What do your og: meta tags say for that page being liked?

Try linting it at https://developers.facebook.com/tools/lint to make sure your og: tags are being read properly by Facebook.

share|improve this answer
what are og tags and where do i specify them in wordpress? – Örjan Wirdheim Feb 3 '12 at 20:32
OG tags go in the <head> section of the DOM. Check with wordpress's help on how to insert custom things into the <head> section. For more information on open graph tags see ogp.me – DMCS Feb 3 '12 at 20:36
Thank you! it works now! – Örjan Wirdheim Feb 4 '12 at 2:27
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 20:18

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.