新建一个模版,名称:
内容:
[CSS] 纯文本查看 复制代码 <!--{if ($discuz_uid)}-->
{eval $myfav = $db->fetch_array($db->query("SELECT * FROM cdb_favorites WHERE uid=$discuz_uid"));}
{eval $q2=$db->query("SELECT * FROM cdb_favorites WHERE uid=".$discuz_uid);}
{eval $gtfav=Array();}
{eval $i=0;}
{eval while ($asdfgh=$db->fetch_array($q2)) $gtfav[$i++] = $asdfgh ; }
<div{if $myfav[fid] > 0} class="mainbox list"{/if}>
<!--{if $myfav[fid] > 0}-->
<span class="headactions">
<!--{if $cat['moderators']}-->{lang forum_category_modedby}: $cat[moderators]<!--{/if}-->
<img id="category_99_img" src="http://bbs.rainmeter.cn/static/image/common/collapsed_no.gif" title="{lang spread}" alt="{lang spread}" onclick="toggle_collapse('category_99');" />
</span>
<h3><a href="my.php?item=favorites">我收藏的板块</a></h3>
<!--{/if}-->
<table id="category_99" summary="category99" cellspacing="0" cellpadding="0" style="$collapse['category_99']">
<tbody>
<tr class="narrowlist">
<!--{loop $gtfav $thing}-->
{eval $q4=$db->fetch_array($db->query("SELECT * FROM cdb_forums WHERE fid=".$thing[fid]));}
<th style="float: left;width:24%;height: 65px;padding: 5px 0 5px 5px;">
<a href="forum-$q4[fid]-1.html"><!--{eval $forum=$forumlist[$q4[fid]];}-->$forum[icon]</a>
<h2><a href="forum-$q4[fid]-1.html" style="color: a;">$q4[name]</a><!--{if $q4[todayposts] && !$q4['redirect']}--><em> ({lang index_today}: <strong>$q4[todayposts]</strong>)<a href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost" style="color: #F26C4F;"> New</a></em><!--{/if}--></em></h2>
<p><em>主题: <span title="$q4[threads]">$q4[threads]</span></em>, <em>帖数: <span title="$q4[posts]">$q4[posts]</span></em></p>
<p>{lang forum_lastpost}: <!--{if is_array($forum['lastpost'])}--><a href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost" title="{echo cutstr($forum[lastpost][subject], 30)} {lang forum_lastpost_by} {if $forum['lastpost']['author']}$forum['lastpost']['authorusername']{else}{lang anonymous}{/if} ">$forum[lastpost][dateline]</a><!--{else}-->{lang never}<!--{/if}--></p>
</th>
<!--{/loop}-->
</tr>
</tbody>
</table>
</div>
<!--{/if}-->
然后打开discuz模版,找到:
[CSS] 纯文本查看 复制代码 <!--{if $indexhot['status']}-->
{subtemplate index_heats}
<!--{/if}-->
在上面添加:
[CSS] 纯文本查看 复制代码 {template my_fav}
|