因为想尽量减轻服务器压力,但也有人说多说加载慢。。个人感觉多说挺好用的,省去了好多麻烦。
也不知道Typecho有木有类似的插件,反正我没找,自己就做了,但还不是插件,只是写了一个function来调用多说的“获取文章评论数”公开API, 并集成到Typecho,多说官方也有,但文档写的不清晰,糊里糊涂的(其实是我不怎么懂JS罢了,O(∩_∩)O~)
PHP获取评论数
在当前主题文件夹下新建一个PHP文件, getDuoshuoComments.php
, 代码如下
<?php
/**
* 获取文章多说评论数
*/
function getDuoshuoComments($threads){
$url = 'http://api.duoshuo.com/threads/counts.json?short_name=xuyangjie&threads=' . $threads;
$jsonComm = file_get_contents($url);
$arrayComm = json_decode($jsonComm, TRUE);
$counts = $arrayComm['response'][$threads]['comments'];
if(!is_int($counts)){
return 0;
}
return $counts;
}
这里需要改的是short_name=xuyangjie
,其中xuyangjie
替换为你在多说创建二级域名。
然后在需要显示评论数的地方添加<?php echo getDuoshuoComments($this->cid); ?>
,就行了。当然你需要在显示评论数的文件添加include('getDuoshuoComments.php')
;,嫌麻烦的话,可以把getDuoshuoComments
函数,写在header.php
内。
目前已知,可以在index.php,post.php,page.php三个页面添加并能正常显示,演示可见本小站 博客已更换为Hexo