Typecho首页不显现某分类
<?php while($this->next()): ?><?php if($this->category != "cateslug"): ?>//一般输出轮回<?php endif; ?><?php endwhile; ?>背景设置首页输出条目数量多一点,比方10条。
<?php $temp = 1; while( $this->next() ):?> <?php if( $this->category != 'category'):?> <?php if( $temp > 5) break; $temp++;?> // your theme code <?php endif;?><?php endwhile;?>code中的5是要输出的数量。

评论列表