每次进入网站或是刷新页面都会随机刷新。
演示地址
在thread_list.inc.htm 找到以下代码
<?php
if($threadlist) {
$have_allowtop = 0;
foreach($threadlist as &$_thread) {
$_thread['allowtop'] = forum_access_mod($_thread['fid'], $gid, 'allowtop');
if($_thread['allowtop']) $have_allowtop = 1;
}
}
?>
更新为
<?php
if($threadlist) {
shuffle($threadlist);
$have_allowtop = 0;
foreach($threadlist as &$_thread) {
$_thread['allowtop'] = forum_access_mod($_thread['fid'], $gid, 'allowtop');
if($_thread['allowtop']) $have_allowtop = 1;
}
}
?>
其实就是加了一个函数