我已经使用Disqus插件将Disqus纳入我的博客。
唯一的问题是我的主题中内置的原始评论计数不断显示为“0评论”。编辑这个区域是在functions.php中,所以我需要用php来调用disqus的注释计数而不仅仅是它们提供的html。
我对php不好,但这是我到目前为止所做的:
/* post_meta_comments */
if($bd_data['post_meta_comments']):
echo "<div class='post_meta_comments'><i class='icon-comments'><a href="<?php echo get_permalink($post->ID); ?>#disqus_thread">link</a></i></div>\n";
endif;
但这样做,网站将无法加载。
示例帖子的我的网址是:http://www.naturettl.com/setting-up-feeding-station/
这是没有我编辑的原始代码:
if($bd_data['post_meta_comments']):
echo "<div class='post_meta_comments'><i class='icon-comments'></i>\n";
comments_popup_link(__('0 Comments', 'bd'), __('1 Comment', 'bd'), '% '.__('Comments', 'bd'));
echo "</div>\n";
endif;