|
1、界面目录位置:template\default\forum\discuz.htm
- 图片大小 var slideImgsize = [218,200];
- 最新主题 <ul class="category_newlist">
- 最新回复 <div class="replaybox">
- 热帖 <div class="hottiebox">
2、数量目录位置:source\module\forum\forum_index.php
- 最新图片 $images = C::t('forum_threadimage')->fetch_all_order_by_tid(10);
- 最新主题 $grids['newthread'] = C::t('forum_thread')->fetch_all_for_guide('newthread', 0, array(), 0, 0, 0, 10, $_G['setting']['grid']['fids']);
- 最新回复 $grids['newreply'] = C::t('forum_thread')->fetch_all_for_guide('reply', 0, array(), 0, 0, 0, 10, $_G['setting']['grid']['fids']);
- 热帖 $grids['hot'] = C::t('forum_thread')->fetch_all_for_guide('hot', 0, array(), 3, 0, 0, 10, $_G['setting']['grid']['fids']);
|