FB Like Counter不显示每页的单个结果

时间:2011-08-12 13:42:56

标签: facebook wordpress facebook-like

下面的代码放在标题中,并通过php调用到网站的每个页面。 (这是WordPress。)

计数器显示每篇文章主页的相同数量。有什么方法可以显示个别文章的计数? (this is the site)

<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#xfbml=1">

</script><fb:like href="http://GlamourUnderground.com" send="true" layout="box_count" width="55" show_faces="false" font="arial"></fb:like>
</div>

谢谢,

塔拉

1 个答案:

答案 0 :(得分:2)

您必须将固定链接放在<fb:like>标记中的实际文章中,而不仅仅是主页。尝试...

<fb:like 
     href="<?php the_permalink()?>" 
     send="true" 
     layout="box_count" 
     width="55" show_faces="false" font="arial"></fb:like>

只要您拨打the_post(),这就行了,例如在个别帖子和页面以及当您处于“循环”时。