typecho 的归档页面文章输出我是这样写的:
<?php
$this->widget('Widget_Contents_Post_Recent', 'pageSize=1000')->to($archives);
$year=0; $i=0; $j=0;
while($archives->next()):
$year_tmp = date('Y',$archives->created);
$y=$year;
if ($year != $year_tmp && $year > 0) $output .= '<p></p>';
if ($year != $year_tmp) {
$year = $year_tmp;
$output = '<h2 class="archive-year">'. $year .'</h2>';
}
$output .= '<a class="transition archive-iterm" href="'.$archives->permalink .'"><h3 class="archive-title">'. $archives->title .'</h3><p class="archive-date">'.date('F jS ',$archives->created).'</p></a>';
endwhile;
echo $output;
?>
但是不能分页,请问如何分页呢?
什么样的分页?