在帖子內(nèi)容頁(yè),1樓(主題帖)與回復(fù)帖代碼:
<!--{eval $postcount = 0;}-->
<!--{loop $postlist $post}-->
<!--{if $rushreply && $_GET['checkrush'] && $post['rewardfloor'] != 1}-->
<!--{eval continue;}-->
<!--{/if}-->
<div id="post_$post[pid]" {if $_G['blockedpids'] && $post['inblacklist']}style="display:none;"{/if}>
<!--{subtemplate forum/viewthread_node}-->
</div>
<!--{eval $postcount++;}-->
<!--{/loop}-->
復(fù)制代碼
|
其中的
<div id="post_$post[pid]" {if $_G['blockedpids'] && $post['inblacklist']}style="display:none;"{/if}>
<!--{subtemplate forum/viewthread_node}-->
</div>
復(fù)制代碼
為主題帖與回復(fù)樓公同使用,如果只調(diào)用回復(fù)樓,不調(diào)用1樓主題帖,則:
<!--{eval $postcount = 0;}-->
<!--{loop $postlist $post}-->
<!--{if $rushreply && $_GET['checkrush'] && $post['rewardfloor'] != 1}-->
<!--{eval continue;}-->
<!--{/if}-->
<!--{if !$post['first'] && $_G['forum_thread']['replies']}-->
<div id="post_$post[pid]" class="box"><!--{subtemplate forum/viewthread_node}--></div>
<!--{/if}-->
<!--{eval $postcount++;}-->
<!--{/loop}-->
復(fù)制代碼
|
第6行做了判斷:不是1樓,并有回復(fù)。
---------------------------------------------------------
如果只調(diào)用1樓,不調(diào)用回復(fù):
<!--{eval $postcount = 0;}-->
<!--{loop $postlist $post}-->
<!--{if $rushreply && $_GET['checkrush'] && $post['rewardfloor'] != 1}-->
<!--{eval continue;}-->
<!--{/if}-->
<!--{if $post['first']}-->
<div id="post_$post[pid]" class="box"><!--{subtemplate forum/viewthread_node}--></div>
<!--{/if}-->
<!--{eval $postcount++;}-->
<!--{/loop}-->
|
第6行做了判斷:1樓。