I've successfully diagnosed and resolved this issue.
Here was my code that was asynchronously loading the Facebook JavaScript SDK:
(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";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
Here was my code that was initializing it:
FB.init({
appId: {APP_ID},
status: true,
cookie: true,
xfbml: true,
oauth: true
});
Note that I've actually requested XFBML parsing twice: once when loading the JavaScript SDK (#xfbml=1), and once when initializing it (xfbml: true).
This causes the error that prevents comment-count tags from rendering.
The resolution is to eliminate one of those two declarations; I would suggest deleting #xfbml=1 from the end of the JavaScript SDK URL, as requesting XFBML parsing at load time seems to be deprecated.
My loader now looks like this:
(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";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
And everything works perfectly.
Synchronous loading
If you load the JavaScript SDK synchronously, change this:
<script src="//connect.facebook.net/en_US/all.js#xfbml=1"></script>
To this:
<script src="//connect.facebook.net/en_US/all.js"></script>