根目錄下的thread.php中,大概213行左右的位置(以之前未曾修改過該檔而論),有下述代碼
if($gp_alloworder){
if($orderway!='lastpost' && $orderway!='postdate' && $orderway!='hits' && $orderway!='replies' ){
$orderway='lastpost'
}
$ordersel[$orderway]='selected'
if($asc!='DESC' && $asc!='ASC'){
$asc = 'DESC'
}
//$orderway.=' '.$asc;
$ascsel[$asc]='selected'
} else{
$asc = 'DESC'
$orderway='lastpost'
其中
紅色的字體部份,設定排列的選擇,如最後回覆、發表時間、點擊率、回覆數
藍色字體的部份,設定排列的升降序
lastpost = 最後回覆 ; postdate =發表時間 ; hits = 點擊率 ; replies = 回覆數
asc = 升序排列 ; desc = 降序排列
代碼中,各有兩個需要修改的地方,上半部是針對可以使用排序功能的使用者設定預設排序,下半部(else之後)則是針對不可使用排序功能的會員而設定排序
此外,如果要針對特定版塊而設定可以如下:
尋找
$orderway='lastpost'
替換為
if($fid==38||$fid==49 ){$orderway='postdate'}else{$orderway='lastpost'}
38跟49是指版塊的ID,上述內容是將38跟49以發表時間排列,而其他版塊以最後回覆排列..
上述資訊來自於PW官方論壇的討論區,分屬多篇討論,在下將之統整在一起...
預祝您使用愉快...