discuz 首页四格:最新话题+最新回复+热门话题+精华文章插件
程序员文章站
2022-07-05 10:42:30
首页四格:最新话题+最新回复+热门话题+精华文章 for dz5.5 正式版 适用版本: discuz!5.5 ...
首页四格:最新话题+最新回复+热门话题+精华文章 for dz5.5 正式版
适用版本: discuz!5.5 正式版
修改难度: 易
数据库升级: 无
演示网站:http://fhxye.cn/
作者:我只是修改罢了~!!!
更新了一下,感谢[url=profile-uid-141096.html]efrog[/url]:lol
原贴:http://www.discuz.net/thread-397572-1-5.html
第一步: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;
下面添加:
//---------------hack meminfo start
if(strpos($http_server_vars[http_user_agent], "msie 6.0")) {
$visitor_browser = "internet explorer 6.0";
} elseif(strpos($http_server_vars[http_user_agent], "msie 5.5")) {
$visitor_browser = "internet explorer 5.5";
} elseif(strpos($http_server_vars[http_user_agent], "msie 5.0")) {
$visitor_browser = "internet explorer 5.0";
} elseif(strpos($http_server_vars[http_user_agent], "msie 4.01")) {
$visitor_browser = "internet explorer 4.01";
} elseif(strpos($http_server_vars[http_user_agent], "netcaptor")) {
$visitor_browser = "netcaptor";
} elseif(strpos($http_server_vars[http_user_agent], "netscape")) {
$visitor_browser = "netscape";
} elseif(strpos($http_server_vars[http_user_agent], "lynx")) {
$visitor_browser = "lynx";
} elseif(strpos($http_server_vars[http_user_agent], "opera")) {
$visitor_browser = "opera";
} elseif(strpos($http_server_vars[http_user_agent], "konqueror")) {
$visitor_browser = "konqueror";
} elseif(strpos($http_server_vars[http_user_agent], "mozilla")) {
$visitor_browser = "mozilla";
} else {
$visitor_browser = "其它";
}
//上面的是浏览器//
if(strpos($http_server_vars[http_user_agent], "nt 5.1")) {
$visitor_os = "windows xp";
}elseif(strpos($http_server_vars[http_user_agent], "nt 5.2")) {
$visitor_os = "windows server 2003";
}elseif(strpos($http_server_vars[http_user_agent], "nt 5")) {
$visitor_os = "windows 2000";
} elseif(strpos($http_server_vars[http_user_agent], "4.9")) {
$visitor_os = "windows me";
} elseif(strpos($http_server_vars[http_user_agent], "nt 4")) {
$visitor_os = "windows nt 4.0";
} elseif(strpos($http_server_vars[http_user_agent], "98")) {
$visitor_os = "windows 98";
} elseif(strpos($http_server_vars[http_user_agent], "95")) {
$visitor_os = "windows 95";
} elseif(strpos($http_server_vars[http_user_agent], "mac")) {
$visitor_os = "mac";
} elseif(strpos($http_server_vars[http_user_agent], "linux")) {
$visitor_os = "linux";
} elseif(strpos($http_server_vars[http_user_agent], "unix")) {
$visitor_os = "unix";
} elseif(strpos($http_server_vars[http_user_agent], "freebsd")) {
$visitor_os = "freebsd";
} elseif(strpos($http_server_vars[http_user_agent], "sunos")) {
$visitor_os = "sunos";
} elseif(strpos($http_server_vars[http_user_agent], "beos")) {
$visitor_os = "beos";
} elseif(strpos($http_server_vars[http_user_agent], "os/2")) {
$visitor_os = "os/2";
} elseif(strpos($http_server_vars[http_user_agent], ";pc")) {
$visitor_os = "macintosh";
}elseif(strpos($http_server_vars[http_user_agent], "aix")) {
$visitor_os = "aix";
} else {
$visitor_os = "其他";
}
$mem_home = convertip($onlineip, $datadir = "./");
//info//
$colorarray = array('', 'red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple', 'gray');
//新贴//
$hack_cut_str =24; //修改标题显示字数
$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, 8");
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;
}
//新贴//
//新回覆
$hack_cut_str = 24; //修改标题显示字数
$hack_cut_strauthor = 9;
$new_reply_threadlist = array();
$rthread = 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.lastpost desc limit 0, 8");
while($rthread = $db->fetch_array($query)) {
$rthread['forumname'] = $rthread['name'];
$rthread['view_subject'] = cutstr($rthread['subject'],$hack_cut_str);
$rthread['view_lastposter'] = cutstr($rthread['lastposter'],$hack_cut_strauthor);
$rthread['date']= gmdate("$dateformat $timeformat", $rthread['dateline'] + $timeoffset * 3600);
$rthread['lastreplytime']= gmdate("$dateformat $timeformat", $rthread[lastpost] + ($timeoffset * 3600));
if($rthread['highlight']) {
$string = sprintf('%02d', $rthread['highlight']);
$stylestr = sprintf('%03b', $string[0]);
$rthread['highlight'] = 'style="';
$rthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
$rthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
$rthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
$rthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
$rthread['highlight'] .= '"';
} else {
$rthread['highlight'] = '';
}
$new_reply_threadlist[] = $rthread;
}
//回覆//
//热帖
$hack_cut_str = 24; //修改标题显示字数
$hack_cut_strauthor = 9;
[color=red]//这个可以选择安装或者不安装//[/color]
[color=red]//热贴指定天数//[/color]
[color=red]$this_time= time();[/color]
[color=red]$sort_time = $today - ( 60*60*24*7); //7天内
[/color]$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 [color=red]and t.dateline > $sort_time[/color][b][color=red] [/color][/b]order by t.views desc limit 0, 8");
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 =24; //修改标题显示字数
$hack_cut_strauthor = 9;
$new_digest_threadlist = array();
$dthread = array();
$query = $db->query("select t.*, f.name from {$tablepre}threads t, {$tablepre}forums f where digest>'0' and t.fid<>'$fid' and f.fid=t.fid order by t.dateline desc limit 0, 8"); //修改显示帖子条数
while($dthread = $db->fetch_array($query)) {
$dthread['forumname'] = $dthread['name'];
$dthread['view_subject'] = cutstr($dthread['subject'],$hack_cut_str);
$dthread['view_author'] = cutstr($dthread['author'],$hack_cut_strauthor);
$dthread['date']= gmdate("$dateformat $timeformat", $dthread['dateline'] + $timeoffset * 3600);
$dthread['lastreplytime']= gmdate("$dateformat $timeformat", $dthread[lastpost] + ($timeoffset * 3600));
if($dthread['highlight']) {
$string = sprintf('%02d', $dthread['highlight']);
$stylestr = sprintf('%03b', $string[0]);
$dthread['highlight'] = 'style="';
$dthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
$dthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
$dthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
$dthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
$dthread['highlight'] .= '"';
} else {
$dthread['highlight'] = '';
}
$new_digest_threadlist[] = $dthread;
}
//精华帖//
如果要修改调用的显示条数,则修改以下代码位置(有4处要修改)
$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, [b][color=red]8[/color][/b]");
把8修改成你要的数目就可以了.
2./templates/default/discuz.htm
找到
<!--{if !empty($advlist['text'])}-->
<div style="clear: both; margin-top: 5px;">
<div class="spaceborder" style="width: {tablewidth}">
<table cellspacing="1" border="0" cellpadding="{tablespace}" width="100%" style="background: {bgborder}">$advlist[text]</table>
</div><br></div>
<!--{/if}-->
下面添加:
<!--{if !empty($advlist['text'])}-->
<div style="clear: both; margin-top: 5px;">
<div class="spaceborder" style="width: {tablewidth}">
<table cellspacing="1" border="0" cellpadding="{tablespace}" width="100%" style="background: {bgborder}">$advlist[text]</table>
</div><br></div>
<!--{/if}-->
<!--{if empty($catlist)}--><div class="maintable"><!--{/if}-->
<table cellspacing="{innerborderwidth}" cellpadding="{tablespace}" width="{tablewidth}" align="center" class="tableborder">
<tr class="header">
<td class="header" width=25% align=center><b>≡最新话题≡</b></td>
<td class="header" width=25% align=center><b>≡最新回复≡</b></td>
<td class="header" width=25% align=center><b>≡热门话题≡</b></td>
<td class="header" width=25% align=center><b>≡精华文章≡</b></td>
</tr>
<tr>
<td class="altbg1">
<!--{loop $new_post_threadlist $nthread}-->
<table border=0 width='100%' cellspacing=2><tr><td height=12 width='76%'><font color=#ff60c0 face=wingdings>z</font> <!--{if $nthread[replies]}--><a href="redirect.php?tid=$nthread[tid]&goto=newpost" $nthread['highlight'] title="最新话题 {lf}所在论坛: $nthread[forumname]{lf}主题标题: $nthread[subject] {lf}主题作者: $nthread[author]{lf}发表时间: $nthread[date]{lf}浏览次数: $nthread[views] 次 {lf}回复次数: $nthread[replies] 次{lf}最后回复: $nthread[lastreplytime]{lf}{lang lastpost}: $nthread[lastposter]" target='_blank'>$nthread[view_subject]</a>
<!--{else}-->
<a href="redirect.php?tid=$nthread[tid]&goto=newpost" $nthread['highlight'] title="最新话题 {lf}所在论坛: $nthread[forumname]{lf}主题标题: $nthread[subject] {lf}主题作者: $nthread[author]{lf}发表时间{lang time}: $nthread[date]{lf}浏览次数: $nthread[views] 次 {lf}回复次数: $nthread[replies] 次{lf}{lang replies}: 暂时没有回复" target='_blank'>$nthread[view_subject]</a><!--{/if}-->
</td><td> <a href="viewpro.php?username=$nthread[author]" target='_blank'class="smalltxt">$nthread[view_author]</a></td></tr></table>
<!--{/loop}-->
</td>
<td class="altbg1">
<!--{loop $new_reply_threadlist $rthread}-->
<table border=0 width='100%' cellspacing=2><tr><td height=12 width='76%'><font color=#ff60c0 face=wingdings>z</font>
<a href="viewthread.php?tid=$rthread[tid]" $rthread['highlight'] title="最新回复 {lf}所在论坛: $rthread[forumname]{lf}主题标题: $rthread[subject]{lf}主题作者: $rthread[author]{lf}发表时间: $rthread[date]{lf}浏览次数: $rthread[views] 次{lf}回复次数: $rthread[replies] 次{lf}最后回复: $rthread[lastreplytime]{lf}{lang lastpost}: $rthread[lastposter]" target='_blank'>$rthread[view_subject]</a></td><td> <a href="viewpro.php?username=$rthread[lastposter]"target='_blank' class="smalltxt">$rthread[view_lastposter]</a></td></tr></table>
<!--{/loop}-->
</td>
<td class="altbg1">
<!--{loop $new_hot_threadlist $mthread}-->
<table border=0 width='100%' cellspacing=2><tr><td height=12 width='76%'><font color=#ff60c0 face=wingdings>z</font>
<a href="viewthread.php?tid=$mthread[tid]" $mthread['highlight'] title="热门话题 {lf}所在论坛: $mthread[forumname]{lf}主题标题: $mthread[subject]{lf}主题作者: $mthread[author]{lf}发表时间: $mthread[date]{lf}浏览次数: $mthread[views] 次{lf}回复次数: $mthread[replies] 次{lf}最后回复: $mthread[lastreplytime]{lf}{lang lastpost}: $mthread[lastposter]"target='_blank'>$mthread[view_subject]</a></td><td> <a href="viewpro.php?username=$rthread[lastposter]" target='_blank'class="smalltxt">$mthread[view_lastposter]</a></td></tr></table>
<!--{/loop}-->
</td>
<td class="altbg1">
<!--{loop $new_digest_threadlist $dthread}-->
<table border=0 width='100%' cellspacing=2><tr><td height=12 width='76%'><font color=#ff60c0 face=wingdings>v</font>
<a href="viewthread.php?tid=$dthread[tid]" $dthread['highlight'] title="精华文章 {lf}所在论坛: $dthread[forumname]{lf}主题标题: $dthread[subject]{lf}主题作者: $dthread[author]{lf}发表时间: $dthread[date]{lf}浏览次数: $dthread[views] 次{lf}回复次数: $dthread[replies] 次{lf}最后回复: $dthread[lastreplytime]{lf}{lang lastpost}: $dthread[lastposter]"target='_blank'>$dthread[view_subject]</a></td><td> <a href="viewpro.php?username=$rthread[lastposter]"target='_blank' class="smalltxt">$dthread[view_author]</a></td></tr></table>
<!--{/loop}-->
</td></tr>
</table><br>
</div>
<div class="maintable">
适用版本: discuz!5.5 正式版
修改难度: 易
数据库升级: 无
演示网站:http://fhxye.cn/
作者:我只是修改罢了~!!!
更新了一下,感谢[url=profile-uid-141096.html]efrog[/url]:lol
原贴:http://www.discuz.net/thread-397572-1-5.html
第一步: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;
下面添加:
复制代码 代码如下:
//---------------hack meminfo start
if(strpos($http_server_vars[http_user_agent], "msie 6.0")) {
$visitor_browser = "internet explorer 6.0";
} elseif(strpos($http_server_vars[http_user_agent], "msie 5.5")) {
$visitor_browser = "internet explorer 5.5";
} elseif(strpos($http_server_vars[http_user_agent], "msie 5.0")) {
$visitor_browser = "internet explorer 5.0";
} elseif(strpos($http_server_vars[http_user_agent], "msie 4.01")) {
$visitor_browser = "internet explorer 4.01";
} elseif(strpos($http_server_vars[http_user_agent], "netcaptor")) {
$visitor_browser = "netcaptor";
} elseif(strpos($http_server_vars[http_user_agent], "netscape")) {
$visitor_browser = "netscape";
} elseif(strpos($http_server_vars[http_user_agent], "lynx")) {
$visitor_browser = "lynx";
} elseif(strpos($http_server_vars[http_user_agent], "opera")) {
$visitor_browser = "opera";
} elseif(strpos($http_server_vars[http_user_agent], "konqueror")) {
$visitor_browser = "konqueror";
} elseif(strpos($http_server_vars[http_user_agent], "mozilla")) {
$visitor_browser = "mozilla";
} else {
$visitor_browser = "其它";
}
//上面的是浏览器//
if(strpos($http_server_vars[http_user_agent], "nt 5.1")) {
$visitor_os = "windows xp";
}elseif(strpos($http_server_vars[http_user_agent], "nt 5.2")) {
$visitor_os = "windows server 2003";
}elseif(strpos($http_server_vars[http_user_agent], "nt 5")) {
$visitor_os = "windows 2000";
} elseif(strpos($http_server_vars[http_user_agent], "4.9")) {
$visitor_os = "windows me";
} elseif(strpos($http_server_vars[http_user_agent], "nt 4")) {
$visitor_os = "windows nt 4.0";
} elseif(strpos($http_server_vars[http_user_agent], "98")) {
$visitor_os = "windows 98";
} elseif(strpos($http_server_vars[http_user_agent], "95")) {
$visitor_os = "windows 95";
} elseif(strpos($http_server_vars[http_user_agent], "mac")) {
$visitor_os = "mac";
} elseif(strpos($http_server_vars[http_user_agent], "linux")) {
$visitor_os = "linux";
} elseif(strpos($http_server_vars[http_user_agent], "unix")) {
$visitor_os = "unix";
} elseif(strpos($http_server_vars[http_user_agent], "freebsd")) {
$visitor_os = "freebsd";
} elseif(strpos($http_server_vars[http_user_agent], "sunos")) {
$visitor_os = "sunos";
} elseif(strpos($http_server_vars[http_user_agent], "beos")) {
$visitor_os = "beos";
} elseif(strpos($http_server_vars[http_user_agent], "os/2")) {
$visitor_os = "os/2";
} elseif(strpos($http_server_vars[http_user_agent], ";pc")) {
$visitor_os = "macintosh";
}elseif(strpos($http_server_vars[http_user_agent], "aix")) {
$visitor_os = "aix";
} else {
$visitor_os = "其他";
}
$mem_home = convertip($onlineip, $datadir = "./");
//info//
$colorarray = array('', 'red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple', 'gray');
//新贴//
$hack_cut_str =24; //修改标题显示字数
$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, 8");
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;
}
//新贴//
//新回覆
$hack_cut_str = 24; //修改标题显示字数
$hack_cut_strauthor = 9;
$new_reply_threadlist = array();
$rthread = 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.lastpost desc limit 0, 8");
while($rthread = $db->fetch_array($query)) {
$rthread['forumname'] = $rthread['name'];
$rthread['view_subject'] = cutstr($rthread['subject'],$hack_cut_str);
$rthread['view_lastposter'] = cutstr($rthread['lastposter'],$hack_cut_strauthor);
$rthread['date']= gmdate("$dateformat $timeformat", $rthread['dateline'] + $timeoffset * 3600);
$rthread['lastreplytime']= gmdate("$dateformat $timeformat", $rthread[lastpost] + ($timeoffset * 3600));
if($rthread['highlight']) {
$string = sprintf('%02d', $rthread['highlight']);
$stylestr = sprintf('%03b', $string[0]);
$rthread['highlight'] = 'style="';
$rthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
$rthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
$rthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
$rthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
$rthread['highlight'] .= '"';
} else {
$rthread['highlight'] = '';
}
$new_reply_threadlist[] = $rthread;
}
//回覆//
//热帖
$hack_cut_str = 24; //修改标题显示字数
$hack_cut_strauthor = 9;
[color=red]//这个可以选择安装或者不安装//[/color]
[color=red]//热贴指定天数//[/color]
[color=red]$this_time= time();[/color]
[color=red]$sort_time = $today - ( 60*60*24*7); //7天内
[/color]$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 [color=red]and t.dateline > $sort_time[/color][b][color=red] [/color][/b]order by t.views desc limit 0, 8");
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 =24; //修改标题显示字数
$hack_cut_strauthor = 9;
$new_digest_threadlist = array();
$dthread = array();
$query = $db->query("select t.*, f.name from {$tablepre}threads t, {$tablepre}forums f where digest>'0' and t.fid<>'$fid' and f.fid=t.fid order by t.dateline desc limit 0, 8"); //修改显示帖子条数
while($dthread = $db->fetch_array($query)) {
$dthread['forumname'] = $dthread['name'];
$dthread['view_subject'] = cutstr($dthread['subject'],$hack_cut_str);
$dthread['view_author'] = cutstr($dthread['author'],$hack_cut_strauthor);
$dthread['date']= gmdate("$dateformat $timeformat", $dthread['dateline'] + $timeoffset * 3600);
$dthread['lastreplytime']= gmdate("$dateformat $timeformat", $dthread[lastpost] + ($timeoffset * 3600));
if($dthread['highlight']) {
$string = sprintf('%02d', $dthread['highlight']);
$stylestr = sprintf('%03b', $string[0]);
$dthread['highlight'] = 'style="';
$dthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
$dthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
$dthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
$dthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
$dthread['highlight'] .= '"';
} else {
$dthread['highlight'] = '';
}
$new_digest_threadlist[] = $dthread;
}
//精华帖//
如果要修改调用的显示条数,则修改以下代码位置(有4处要修改)
复制代码 代码如下:
$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, [b][color=red]8[/color][/b]");
把8修改成你要的数目就可以了.
2./templates/default/discuz.htm
找到
复制代码 代码如下:
<!--{if !empty($advlist['text'])}-->
<div style="clear: both; margin-top: 5px;">
<div class="spaceborder" style="width: {tablewidth}">
<table cellspacing="1" border="0" cellpadding="{tablespace}" width="100%" style="background: {bgborder}">$advlist[text]</table>
</div><br></div>
<!--{/if}-->
下面添加:
复制代码 代码如下:
<!--{if !empty($advlist['text'])}-->
<div style="clear: both; margin-top: 5px;">
<div class="spaceborder" style="width: {tablewidth}">
<table cellspacing="1" border="0" cellpadding="{tablespace}" width="100%" style="background: {bgborder}">$advlist[text]</table>
</div><br></div>
<!--{/if}-->
<!--{if empty($catlist)}--><div class="maintable"><!--{/if}-->
<table cellspacing="{innerborderwidth}" cellpadding="{tablespace}" width="{tablewidth}" align="center" class="tableborder">
<tr class="header">
<td class="header" width=25% align=center><b>≡最新话题≡</b></td>
<td class="header" width=25% align=center><b>≡最新回复≡</b></td>
<td class="header" width=25% align=center><b>≡热门话题≡</b></td>
<td class="header" width=25% align=center><b>≡精华文章≡</b></td>
</tr>
<tr>
<td class="altbg1">
<!--{loop $new_post_threadlist $nthread}-->
<table border=0 width='100%' cellspacing=2><tr><td height=12 width='76%'><font color=#ff60c0 face=wingdings>z</font> <!--{if $nthread[replies]}--><a href="redirect.php?tid=$nthread[tid]&goto=newpost" $nthread['highlight'] title="最新话题 {lf}所在论坛: $nthread[forumname]{lf}主题标题: $nthread[subject] {lf}主题作者: $nthread[author]{lf}发表时间: $nthread[date]{lf}浏览次数: $nthread[views] 次 {lf}回复次数: $nthread[replies] 次{lf}最后回复: $nthread[lastreplytime]{lf}{lang lastpost}: $nthread[lastposter]" target='_blank'>$nthread[view_subject]</a>
<!--{else}-->
<a href="redirect.php?tid=$nthread[tid]&goto=newpost" $nthread['highlight'] title="最新话题 {lf}所在论坛: $nthread[forumname]{lf}主题标题: $nthread[subject] {lf}主题作者: $nthread[author]{lf}发表时间{lang time}: $nthread[date]{lf}浏览次数: $nthread[views] 次 {lf}回复次数: $nthread[replies] 次{lf}{lang replies}: 暂时没有回复" target='_blank'>$nthread[view_subject]</a><!--{/if}-->
</td><td> <a href="viewpro.php?username=$nthread[author]" target='_blank'class="smalltxt">$nthread[view_author]</a></td></tr></table>
<!--{/loop}-->
</td>
<td class="altbg1">
<!--{loop $new_reply_threadlist $rthread}-->
<table border=0 width='100%' cellspacing=2><tr><td height=12 width='76%'><font color=#ff60c0 face=wingdings>z</font>
<a href="viewthread.php?tid=$rthread[tid]" $rthread['highlight'] title="最新回复 {lf}所在论坛: $rthread[forumname]{lf}主题标题: $rthread[subject]{lf}主题作者: $rthread[author]{lf}发表时间: $rthread[date]{lf}浏览次数: $rthread[views] 次{lf}回复次数: $rthread[replies] 次{lf}最后回复: $rthread[lastreplytime]{lf}{lang lastpost}: $rthread[lastposter]" target='_blank'>$rthread[view_subject]</a></td><td> <a href="viewpro.php?username=$rthread[lastposter]"target='_blank' class="smalltxt">$rthread[view_lastposter]</a></td></tr></table>
<!--{/loop}-->
</td>
<td class="altbg1">
<!--{loop $new_hot_threadlist $mthread}-->
<table border=0 width='100%' cellspacing=2><tr><td height=12 width='76%'><font color=#ff60c0 face=wingdings>z</font>
<a href="viewthread.php?tid=$mthread[tid]" $mthread['highlight'] title="热门话题 {lf}所在论坛: $mthread[forumname]{lf}主题标题: $mthread[subject]{lf}主题作者: $mthread[author]{lf}发表时间: $mthread[date]{lf}浏览次数: $mthread[views] 次{lf}回复次数: $mthread[replies] 次{lf}最后回复: $mthread[lastreplytime]{lf}{lang lastpost}: $mthread[lastposter]"target='_blank'>$mthread[view_subject]</a></td><td> <a href="viewpro.php?username=$rthread[lastposter]" target='_blank'class="smalltxt">$mthread[view_lastposter]</a></td></tr></table>
<!--{/loop}-->
</td>
<td class="altbg1">
<!--{loop $new_digest_threadlist $dthread}-->
<table border=0 width='100%' cellspacing=2><tr><td height=12 width='76%'><font color=#ff60c0 face=wingdings>v</font>
<a href="viewthread.php?tid=$dthread[tid]" $dthread['highlight'] title="精华文章 {lf}所在论坛: $dthread[forumname]{lf}主题标题: $dthread[subject]{lf}主题作者: $dthread[author]{lf}发表时间: $dthread[date]{lf}浏览次数: $dthread[views] 次{lf}回复次数: $dthread[replies] 次{lf}最后回复: $dthread[lastreplytime]{lf}{lang lastpost}: $dthread[lastposter]"target='_blank'>$dthread[view_subject]</a></td><td> <a href="viewpro.php?username=$rthread[lastposter]"target='_blank' class="smalltxt">$dthread[view_author]</a></td></tr></table>
<!--{/loop}-->
</td></tr>
</table><br>
</div>
<div class="maintable">