typecho 아카이브 페이지의 기사 출력을 다음과 같이 썼습니다.
<code class="php"><?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 .= '<div></div>'; 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; ?></code>
페이지를 매길 수 없는데 어떻게 해야 하나요?
typecho 아카이브 페이지의 기사 출력을 다음과 같이 썼습니다.
<code class="php"><?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 .= '<div></div>'; 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; ?></code>
페이지를 매길 수 없는데 어떻게 해야 하나요?
어떤 종류의 페이지네이션이 있나요?