在制作两栏typecho博客主题时,如果想在网站的侧边栏调用一定数量的博客最新文章列表怎么办?方法很简单,使用Widget_Contents_Post_Recent这个widget即可调用,通过pageSize参数即可限制调用数量。
1 2 3 | <?php $this->widget('Widget_Contents_Post_Recent','pageSize=10')->parse('<li><a href="{permalink}"><span>{year}/{month}/{day}</span>{title}</a></li>'); ?> |
1 2 3 4 5 6 7 | <?php $this->widget('Widget_Contents_Post_Recent','pageSize=10')->to($recent); if($recent->have()): while($recent->next()): ?> <li><a href="<?php $recent->permalink();?>"><?php $recent->title();?></a></li> <?php endwhile; endif;?> |
1 2 3 4 5 6 7 | <?php $recent = $this->widget('Widget_Contents_Post_Recent','pageSize=10'); if($recent->have()): while($recent->next()): ?> <li><a href="<?php $recent->permalink();?>"><?php $recent->title();?></a></li> <?php endwhile; endif;?> |
提示:把代码pageSize=10中的10为要调用的文章数量。
函数位于var/Widget/Contents/Post/Recent.php