收录,转载,请注明版权所有!!!!未注明者,后果自负!
改头部连接在header.htm,还有,此风格对广告无其他影响.....如果出问题请回复!
关于增加首页的新帖和热帖方法在2楼
此风格为仿制,风格.地址演示http://www.pulage.com/bbs/index.php?styleid=7!!!!!!!自己看图片吧!3楼是别人的演示!
相关信息:
风格名称:无聊风格
发布时间:2007年5月25日
制作时间:2007年5月24日
编码类型: GBK
适用版本: Discuz! 5.5.0 正式版
作品类型: 仿制制作
原创作者: Kuboy (ζ遺忘の嗳Э QQ:254089249)
演示:本地安装,暂时没有
注意:和FF存在框架错位
演示图:
————————压缩包介绍————————
/upload ——风格模版文件及图片
discuz_style_无聊风格.txt ——风格配色导入文件
index.php -----修改好的文件
说明.txt
添加个首页新帖和热帖的数据库查询,如果您不会下面的操作,还有未修改过INDEX.PHP,请使用压缩包里的覆盖,就可以了!
1、修改index.php
找到:- require_once DISCUZ_ROOT.'./include/forum.func.php';
复制代码 下面添加:- require_once DISCUZ_ROOT.'./include/misc.func.php';
复制代码 找到:- $newthreads = round(($timestamp - $lastvisit + 600) / 1000) * 1000;
复制代码 下面添加:- $colorarray = array('', 'red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple', 'gray');
- //热帖
- $hack_cut_str = 32; //修改标题显示字数
- $hack_cut_strauthor = 9;
- $new_hot_threadlist = array();
- $mthread = array();
- $query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid AND t.closed NOT LIKE 'moved|%' AND t.replies !=0 ORDER BY t.views DESC LIMIT 0, 5");
- while($mthread = $db->fetch_array($query)) {
- $mthread['forumname'] = $mthread['name'];
- $mthread['view_subject'] = cutstr($mthread['subject'],$hack_cut_str);
- $mthread['view_lastposter'] = cutstr($mthread['lastposter'],$hack_cut_strauthor);
- $mthread['date']= gmdate("$dateformat $timeformat", $mthread['dateline'] + $timeoffset * 3600);
- $mthread['lastreplytime']= gmdate("$dateformat $timeformat", $mthread[lastpost] + ($timeoffset * 3600));
- if($mthread['highlight']) {
- $string = sprintf('%02d', $mthread['highlight']);
- $stylestr = sprintf('%03b', $string[0]);
- $mthread['highlight'] = 'style="';
- $mthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
- $mthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
- $mthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
- $mthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
- $mthread['highlight'] .= '"';
- } else {
- $mthread['highlight'] = '';
- }
- $new_hot_threadlist[] = $mthread;
- }
- //热帖//
- //新贴//
- $hack_cut_str =32; //修改标题显示字数
- $hack_cut_strauthor = 9;
- $new_post_threadlist = array();
- $nthread = array();
- $query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid ORDER BY t.dateline DESC LIMIT 0, 5");
- while($nthread = $db->fetch_array($query)) {
- $nthread['forumname'] = $nthread['name'];
- $nthread['view_subject'] = cutstr($nthread['subject'],$hack_cut_str);
- $nthread['view_author'] = cutstr($nthread['author'],$hack_cut_strauthor);
- $nthread['date']= gmdate("$dateformat $timeformat", $nthread['dateline'] + $timeoffset * 3600);
- $nthread['lastreplytime']= gmdate("$dateformat $timeformat", $nthread[lastpost] + ($timeoffset * 3600));
- if($nthread['highlight']) {
- $string = sprintf('%02d', $nthread['highlight']);
- $stylestr = sprintf('%03b', $string[0]);
- $nthread['highlight'] = 'style="';
- $nthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
- $nthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
- $nthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
- $nthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
- $nthread['highlight'] .= '"';
- } else {
- $nthread['highlight'] = '';
- }
- $new_post_threadlist[] = $nthread;
- }
- //新贴//
复制代码 2,上传文件images,templates,include,到论坛根目录!!!
3,后台导入discuz_style_无聊风格.txt
4,没拉,.................
[ 本帖最后由 kuboy 于 2007-7-14 18:29 编辑 ] |