请教下大家, 首页和详情页的随机主题,  要怎么改下,不是显示最新的,而是最早发布的呢

 

 

 

首页随机主题代码,样式自行修改。

<?php $arrlist = thread_tid_find(1, 5000);
if ($arrlist) {
    $threads = count($arrlist);
    $total = $threads > 20 ? 20 : $threads;
    $tidarr = $threads > 20 ? array_rand($arrlist, $total) : array_keys($arrlist);
    $arrlist = well_thread_find_asc($tidarr, $total);
}
?>

 

随机主题

<?php $arrlist = thread_tid_find_by_fid($fid, 1, 1000, FALSE);
if ($arrlist) {
    $total = $forum['threads'] > 20 ? 20 : $forum['threads'];
    $tidarr = $forum['threads'] > 20 ? array_rand($arrlist, $total) : array_keys($arrlist);
    $arrlist = well_thread_find_asc($tidarr, $total);
}
?>