在制作两栏typecho博客主题时,如果想在网站的侧边栏调用一定数量的博客最新文章列表怎么办?方法很简单,使用Widget_Contents_Post_Recent^ V e & Y
这个widget即可调用,通过pageSize参数即可限制调用数量。
代码一
<?php $this->widgei U \ 1 9 U h \ qt('R t T {WidgeF [ ) zt_ConI C ( ! k O ( 5tents_Post_Recent','pageSize=10')->parse('<li><a href="https://www.boke8.net/{permalink^ . g 2 k N}"><span>{year}/{month}/{day}&le V F L f 4 $ | kt;/span>{title}</a></li>'); ?>
参数说明:
- pageSize – 要调用的文章数量,默认调用后台“设置-阅读-文章列表数目”里设置的数量
- {permalink} – 文3 r E章链接标签代码
- {year} – 文章发布时间年份
- {month} – 文章发布时间月份
- {day} – 文章发布时间天
- {title} – 文章标题
代码二
<?php $this->widget(N ^ ) 3'Widget_CF 8 E 7 : \ontents_Post_Recent','pageSize=10')->to($recent1 d C X 9); if($recent->have()): while($` s w ; M z krecent->nZ | - Aext()): ?> <li><a href="https://www.boke8.net/<?php $recent-&G 9 fgt;permalink();?>"><?php $recent->title();?></a></li> <?php endwhile; endif;?>
代码三
<?php $recent = $this->widget('Widget_Contents_Post_Recent','pageSize=g u $ # ` w [ k x10'); if($recent->1 e ghave()): while($recent-&gW 9 Dt;next()): ?> <li><a href="https://www.boke8.net/<?php $recent->permalink();?>" rel="external nofollow" ><?php $rec, X ^ = A R D Q .ent->title();?></a></li> <?php endwhile; endif;?>
提示:把代码pageSize=10
中的18 _ 3 r N = ? .0为要调用的文章数量。
函数位于var/Widget/Contents/Post/Recent.php