普通页面,随意弄即可。 举例:<?php $this->need('header.php'); ?> <div class="container" id="content"> &l...
话题 Typecho 文章
post页面用于展示单片文章。由于post.php和archive.php都是由Widget_Archive加载,因此其api都是一样的。唯一不同的地方就是,archive.php页面中,Widget_Archive的栈中可能有多篇文...
Typecho判断为当前页的第几篇文章,并单独输出代码,可应用于第一篇文章底部广告::<?php if ($this->sequence == 0): ?> //需要的插入 <?php endif; ?>
让首页第一篇文章显示不相同的代码:<?php if (($this->_currentPage == 1) && ($this->sequence == 1)): ?> ... //首页第一篇文...
Typecho单独调用评论列表的代码,代码作者Mr.Asong:<?php $slug = "message"; //页面缩略名 $limit =...
Typecho 变成CMS那样,输出全部分类,并按分类输出文章: <?php $this->widget('Widget_Metas_Category_List')->to($categor...
Typecho首页不显示某分类文章的代码如下:<?php while($this->next()): ?> <?php if($this->category != "cateslug"): ?> /...