실제로 워드프레스에서 가장 자주 쓰일법한 유용한 아카이브 php 모음 최근 포스트(Recent Articles) <?php wp_get_archives('type=postbypost'); ?> 월별 포스트(Archives by Month) <?php wp_get_archives('type=monthly'); ?> 카테고리별 포스트(Archives by…
워드프레스 php ‘wp_get_archives’ 를 활용해 포스트 아카이브를 맘대로 표현할 수 있다. 사용법(Usage) <?php wp_get_archives( $args ); ?> 기본 사용법(Default Usage) <?php $args = array( 'type'…