如何修改 Xiuno BBS 4.0 让其他版块也出现全局置顶的主题。 code

admin 2017-08-30 4458


默认全局置顶只在首页显示,觉得不合适的可以按照以下步骤进行修改。

1. 修改 model/thread_top.func.php

function thread_top_find($fid = 0) {
        // hook model_thread_top_find_start.php
        if($fid == 0) {
                $threadlist = db_find('thread_top', array('top'=>3), array('tid'=>-1), 1, 100, 'tid');
        } else {
                $threadlist = db_find('thread_top', array('fid'=>$fid, 'top'=>1), array('tid'=>-1), 1, 100, 'tid');
        }
        $tids = arrlist_values($threadlist, 'tid');
        $threadlist = thread_find_by_tids($tids);
        // hook model_thread_top_find_end.php
        return $threadlist;
}

改为:

function thread_top_find($fid = 0) {
        // hook model_thread_top_find_start.php
        if($fid == 0) {
                $threadlist = db_find('thread_top', array('top'=>3), array('tid'=>-1), 1, 100, 'tid');
        } else {
                $threadlist1 = db_find('thread_top', array('top'=>3), array('tid'=>-1), 1, 100, 'tid');
                $threadlist2 = db_find('thread_top', array('fid'=>$fid, 'top'=>1), array('tid'=>-1), 1, 100, 'tid');
                $threadlist = $threadlist1 + $threadlist2;
        }
        $tids = arrlist_values($threadlist, 'tid');
        $threadlist = thread_find_by_tids($tids);
        // hook model_thread_top_find_end.php
        return $threadlist;
}


最新回复 (0)
全部楼主
    • MSDN,我告诉你(中文站)
      2
        登录 注册 获取赞助码
返回