wordpress アーカイブリスト表示

アーカイブリスト表示

<ul>
  <?php
    $args = array(
      'type'            => 'yearly',
      'format'          => 'html',
      'show_post_count' =>  true,
      'post_type'       => '{カスタム投稿名}',
      'taxonomy'        => '{タクソノミー名}',
      'slug'            => '{ターム名}'
    );
    wp_get_archives( $args );
  ?>
</ul>