我有 view.php 和 index.php 。 我在 view.php 中实现了fb评论插件,我想在 index.php上显示评论数量
这就是我在view.php
中动态显示评论框的方法<div class="fb-comments"colorscheme="light"
data-href="http://www.example.com/'.$product["id"].'"
data-width="100%" data-numposts="5"></div>
这就是我在view.php标题中所拥有的。
<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_US/sdk.js#xfbml=1&version=v2.4";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
如何在index.php上显示评论数?
答案 0 :(得分:2)
Comments Count插件会帮助你!
按照文档进行操作,每个帖子后您都会有一个评论计数。请记住在view.php
的{{1}}标题中包含您已获得的Facebook代码!