我有一个漫画网站(www.hittingtreeswithsticks.comwindow.history.pushState(null, null, '.?action=viewcomic&id=' + imgIndex);
),每次有人获得下一个或上一个漫画时,我都会使用它来更新 URL id。
我还想将评论/喜欢功能与每个单独的漫画相关联,这样我就可以看到它们有多受欢迎。
我在查看漫画页面上放了以下 fb 点赞和评论代码(即将更改为 DISQUS):
<center>
<div class="fb-like" data-href="http://www.hittingtreeswithsticks.com/" data-send="true" data-layout="button_count" data-width="450" data-show-faces="true" data-font="trebuchet ms"></div>
<br />
<br />
<div class="fb-comments" data-href="http://www.hittingtreeswithsticks.com" data-num-posts="2" data-width="470"></div>
</center>
到目前为止,点赞只与整个网站相关联,与特定漫画无关……所以如果我去下一个漫画,它的点赞数(645)和评论仍然相同。
我可以做些什么来将喜欢/评论或其他任何与特定漫画 ID 关联起来?
谢谢!