首页和详情页的随机主题怎么样改下让显示最早发布的内容

feion1992024-08-30  232

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

 

 

 

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

<?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);
}
?>
转载请注明原文地址:https://www.wellcms.net/read-803.html
00
最新回复(1)
  • /*
    排序方式 TRUE降序【最新(大)排列:3,2,1】,FALSE升序【最老(小)排列:1,2,3】
    1000代表1000条数据随机挑选20条显示。你可以改成100条缩小范围。
    筛选数据不能超过5000
    */
    
    $arrlist = thread_tid_find(1, 1000, FALSE);
    
    $arrlist = thread_tid_find_by_fid($fid, 1, 1000, FALSE);
    回复10