Typecho调用指定数量最新文章的方法代码

白芸资源网公益广告

Typecho调用指定数量最新文章的方法代码

在制作两栏typecho博客主题时,如果想在网站的侧边栏调用一定数量的博客最新文章列表怎么办?方法很简单,使用Widget_Contents_Post_Recent这个widget即可调用,通过pageSize参数即可限制调用数量。

代码一

1
2
3
$this->widget('Widget_Contents_Post_Recent','pageSize=10')->parse('
  • {year}/{month}/{day}{title}
  • '
    ); ?>
    参数说明:
    • pageSize – 要调用的文章数量,默认调用后台“设置-阅读-文章列表数目”里设置的数量
    • {permalink} – 文章链接标签代码
    • {year} – 文章发布时间年份
    • {month} – 文章发布时间月份
    • {day} – 文章发布时间天
    • {title} – 文章标题

    代码二

    1
    2
    3
    4
    5
    6
    7
    
    $this->widget('Widget_Contents_Post_Recent','pageSize=10')->to($recent);
    	if($recent->have()):
    	while($recent->next()):
    ?>
    
  • $recent->title();?>
  • endwhile; endif;?>

    代码三

    1
    2
    3
    4
    5
    6
    7
    
    $recent = $this->widget('Widget_Contents_Post_Recent','pageSize=10');
    	if($recent->have()):
        while($recent->next()):
    ?>       
    
  • $recent->title();?>
  • endwhile; endif;?>

    提示:把代码pageSize=10中的10为要调用的文章数量。

    函数位于var/Widget/Contents/Post/Recent.php

      © 版权声明
      THE END
      本站一切内容不代表本站立场
      赞赏 分享