실제로 워드프레스에서 가장 자주 쓰일법한 유용한 아카이브 php 모음
최근 포스트(Recent Articles)
<?php wp_get_archives('type=postbypost'); ?>
월별 포스트(Archives by Month)
<?php wp_get_archives('type=monthly'); ?>
카테고리별 포스트(Archives by Category)
<?php wp_list_categories(); ?>
월별 포트스 + 숫자(Monthly archive with post count)
<?php wp_get_archives('show_post_count=1'); ?>
년별 포스트(Yearly archives)
<?php wp_get_archives('type=yearly'); ?>
레벨별 포스트(깊이 조절 가능)(Display only top level categories)
<?php wp_list_categories('depth=1'); ?>
태그 구름(Display tag cloud)
<?php wp_tag_cloud(); ?>