一直在寻找一个适合的在侧边栏显示最新评论的插件,感觉 get recent comments 这个插件挺适合自己的,但是因为不是国人编写的,所以在中文显示方面存在一点小问题,字会被截断而显示成“□□□”乱码,原以为是文件的编码问题,但是转换后还是无效,GOOGLE找到解决方法。
安装方法详见说明文档,解决字被截断显示乱码的问题,打开 get-recent-comments.php ,定位到下面代码,并添加红色部分代码即可:
if (strlen($text) > $length) {
if (function_exists('mb_strimwidth')){
$text = mb_strimwidth($text, 0, $chars_per_comment, '…', 'utf-8' );
}
else {
$text = substr($text,0,$length);
$text = substr($text,0,strrpos($text,' '));
// last word exceeds max word length:
if ( ( strlen($text) - strrpos($text,' ') ) > $chars_per_word) {
$text = substr($text,0,strlen($text)-3);
}
$text = $text . "…";
}
}
Leave Ur Comments
太棒了,你是抢到板凳的第一人!