这个功能基于“兔兔审核插件”
在最新评论小插件 v1.0 中的list.htm中的第13行开始加上
$threadlist = cache_get($cachename);
if($threadlist === NULL) {
// 只获取审核通过的评论
$threadlist = post_find(array("isfirst" => 0, "quotepid" => 0, "OK" => '1'), array("create_date" => "-1"), 1, 5);
cache_set($cachename, $threadlist, 600);
}
return $threadlist;
}
未过审则不显示!
最后于 2月前
被xiangmingya编辑
,原因: