I've been working on this for a couple days. At first I was having problems getting the right numbers to display, ran the pages through the FB linter and now I'm good. My problem now is that on my blog page - http://solarisfamily.com/blog/ - the Like button will show up on the first blog listing, but not on subsequent ones and then not on the individual blog pages.
I'm not using the Facebook plugin for WP as it's too limiting for my custom layout. I'm using the most recent JS SDK for the button, the most recent XML namespace in the HTML tag and the most recent fb:like tag. One thing I had to do was modify the URL to pull the canonical URL correctly (the_permalink()). This all works perfectly in FF, at least where I can see it; but Safari, IE and Chrome show only the first button.
Here's my button code on the blog.php and single.php pages:
<fb:like href="<?php the_permalink() ?>" layout="box_count" show_faces="false" width="50" action="like" colorscheme="light" id="fb_<?php the_ID() ?>" ></fb:like>
and the JS SDK in the header immediately after the body tag:
(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_US/all.js#xfbml=1&appId=103211403106175";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
Any ideas?