워드프레스 글 목차 만들기

[ ] 사이에 아래 코드를 작성한다.

display-posts include_date=”true” date_format=”Y/m/d” posts_per_page=”100″

100개의 최신글이 나온다.

예제: Draft 글을 모아보려면 (처음순서대로, 앞에 숫자를 붙여서)

display-posts posts_per_page=”100″ order=”ASC” wrapper=”ol” post_status=”draft”

예제2: Private 101번째 글부터

display-posts posts_per_page=”100″ order=”ASC” wrapper=”ol” post_status=”private” offset=”100″

월별 목차 보기

Archives shortcode를 사용한다.
archives type=monthly limit=1 showcount=true order=asc

1개월이 나오는데 포스팅된 날짜를 기준으로 하는지 오늘 날짜를 기준으로 하는지 테스트. 현재는 1월만 나옴

Posted in mm