HighLab

アーカイブページテンプレート

  • 公開日:
  • 更新日:
  • 文字数:647文字
<ul class="archive-wrap">
      <?php $cats = get_the_category(); ?>
      <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
        <?php get_template_part('inc/inc-archive');?>
      <?php endwhile; ?>
      <?php endif; ?>


      <div class="pagination">
        <?php $args = array(
          'prev_next'          => true,
          'prev_text'          => '<',
          'next_text'          => '>',
          'mid_size' =>5,
        ); ?>
        <?php echo paginate_links($args); ?>
      </div>
      <?php wp_reset_postdata(); ?>
    </ul>