Discuz! 电脑版导读首页默认显示最新热门改为最新发表的方法
打开 source/module/forum/forum_guide.php 文件,查找如下代码:
$view = $_GET['view'];
loadcache('forum_guide');
if(!in_array($view, array('hot', 'digest', 'new', 'my', 'newthread', 'sofa'))) {
$view = 'hot';
}
把其中 $view = 'hot'; 改$view = 'newthread';
修改后如下:
$view = $_GET['view'];
loadcache('forum_guide');
if(!in_array($view, array('hot', 'digest', 'new', 'my', 'newthread', 'sofa'))) {
$view = 'newthread';
}
|
|