- 好友
- 1
- 精华
- 0
- 积分
- 3017
- 阅读权限
- 200
- 注册时间
- 2021-12-22
- 最后登录
- 2026-7-4
管理员
- UID
- 1
|
马上注册,解锁更多功能,轻松玩转日记网 riji.cn
您需要 登录 才可以下载或查看,没有账号?立即注册
×
找到:\source\app\forum\child\index\grid.php
找到:
- $images = table_forum_threadimage::t()->fetch_all_order_by_tid(10);
复制代码 修改为:
- $images = table_forum_threadimage::t()->fetch_all_order_by_tid(5);//四格幻灯片改为显示5张
复制代码
找到:
- $grids['newthread'] = table_forum_thread::t()->fetch_all_for_guide('newthread', 0, [], 0, 0, 0, 10, $_G['setting']['grid']['fids']);
- $grids['newreply'] = table_forum_thread::t()->fetch_all_for_guide('reply', 0, [], 0, 0, 0, 10, $_G['setting']['grid']['fids']);
- $grids['hot'] = table_forum_thread::t()->fetch_all_for_guide('hot', 0, [], 3, 0, 0, 10, $_G['setting']['grid']['fids']);
复制代码 修改为:
- $grids['newthread'] = table_forum_thread::t()->fetch_all_for_guide('newthread', 0, [], 0, 0, 0, 8, $_G['setting']['grid']['fids']);//四格主题数改为显示8条
- $grids['newreply'] = table_forum_thread::t()->fetch_all_for_guide('reply', 0, [], 0, 0, 0, 8, $_G['setting']['grid']['fids']);//四格主题数改为显示8条
- $grids['hot'] = table_forum_thread::t()->fetch_all_for_guide('hot', 0, [], 3, 0, 0, 8, $_G['setting']['grid']['fids']);//四格主题数改为显示8条
复制代码
|
|