68
Custom Post Type By 임임임 @ssamture [email protected] http://ssamture.net WordCamp Seoul 2012 Seoul, South Korea - May 26 Track3 – 14:10

WordCamp Seoul 2012 - WordPress Custom Post type

Embed Size (px)

DESCRIPTION

워드프레스 커스텀 포스트 타입 개발 기초

Citation preview

Page 1: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

By 임민형 @[email protected]

http://ssamture.net

WordCamp Seoul 2012Seoul, South Korea - May 26Track3 – 14:10

Page 2: WordCamp Seoul 2012 - WordPress Custom Post type

미리보기

• Post 와 Page• Custom Post Type • Custom Meta Box• Custom Filelds• Filter 를 이용한 Cutom Fileds 출력• Custom Post Type 을 위한 테마 템플릿• Custom Post list( 관리자패널 )• Custom Taxonomies

WordCamp Seoul 2012 @ssamture

Page 3: WordCamp Seoul 2012 - WordPress Custom Post type

POST 와 PAGE

• content 저장

Page 4: WordCamp Seoul 2012 - WordPress Custom Post type

POST 와 PAGE

• POST- title, content, tag, category- 시간- 포멧

WordCamp Seoul 2012 @ssamture

Page 5: WordCamp Seoul 2012 - WordPress Custom Post type

POST 와 PAGE

WordCamp Seoul 2012 @ssamture

Page 6: WordCamp Seoul 2012 - WordPress Custom Post type

POST 와 PAGE

• PAGE- title, content- 상위 page- 템플릿 적용

WordCamp Seoul 2012 @ssamture

Page 7: WordCamp Seoul 2012 - WordPress Custom Post type

POST 와 PAGE

WordCamp Seoul 2012 @ssamture

Page 8: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

• post type• 플러그인 생성• register_post_type

Page 9: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

• 반복되는 메타정보를 입력할 때- 갤러리 ( 촬영날짜 , 촬영장소 등 )- 쇼핑몰 ( 제품가격 , 제품색상 등 )

• 특정 UI 를 적용할 때

WordCamp Seoul 2012 @ssamture

Page 10: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

• 모든 내용은 posts 테이블에 저장- post, page, attachment, menu 등

WordCamp Seoul 2012 @ssamture

Page 11: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

• 플러그인 생성

WordCamp Seoul 2012 @ssamture

Page 12: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

• register_post_type

WordCamp Seoul 2012 @ssamture

Page 13: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

WordCamp Seoul 2012 @ssamture

Page 14: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

• 클래스 화- 다른 플러그인과 함수명 충돌 예방

WordCamp Seoul 2012 @ssamture

Page 15: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

WordCamp Seoul 2012 @ssamture

Page 16: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

WordCamp Seoul 2012 @ssamture

Page 17: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

WordCamp Seoul 2012 @ssamture

Page 18: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

WordCamp Seoul 2012 @ssamture

Page 19: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

• 고유주소 업데이트로 해결

WordCamp Seoul 2012 @ssamture

Page 20: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

WordCamp Seoul 2012 @ssamture

Page 21: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

• 다양한 라벨 속성

WordCamp Seoul 2012 @ssamture

Page 22: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

WordCamp Seoul 2012 @ssamture

Page 23: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

WordCamp Seoul 2012 @ssamture

Page 24: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

WordCamp Seoul 2012 @ssamture

Page 25: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

WordCamp Seoul 2012 @ssamture

Page 26: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

• supports

WordCamp Seoul 2012 @ssamture

Page 27: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

WordCamp Seoul 2012 @ssamture

post_formats

page-attributes

thumbnail

Page 28: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

WordCamp Seoul 2012 @ssamture

trackbacks

custom-fileds

comments

author

Page 29: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Post Type

WordCamp Seoul 2012 @ssamture

supports 추가 후

supports 추가 전

supports 제거

Page 30: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Meta Box(Custom Field)

• add_meta_box

Page 31: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Meta Box

• 메타 데이터• 포스트에 별도의 새로운 정보를 부여

WordCamp Seoul 2012 @ssamture

Page 32: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Meta Box

• add_meta_boxes action

• add_meta_box function

WordCamp Seoul 2012 @ssamture

Page 33: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Meta Box

WordCamp Seoul 2012 @ssamture

meta box title

Page 34: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Meta Box

WordCamp Seoul 2012 @ssamture

meta box 입력 폼

Page 35: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Meta Box

WordCamp Seoul 2012 @ssamture

meta box 입력 폼

Page 36: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Meta Box

WordCamp Seoul 2012 @ssamture

meta 정보 입력

저장

Page 37: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Meta Box

WordCamp Seoul 2012 @ssamture

저장 되지 않음

Page 38: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Meta Box

WordCamp Seoul 2012 @ssamture

Page 39: WordCamp Seoul 2012 - WordPress Custom Post type

Custom Meta Box

WordCamp Seoul 2012 @ssamture

Page 40: WordCamp Seoul 2012 - WordPress Custom Post type

Meta 출력

• get_post_meta• ‘the_content’ filter 활용• 테마

Page 41: WordCamp Seoul 2012 - WordPress Custom Post type

메타 출력

• Filter 를 이용하여 출력• 테마 파일에서 출력

WordCamp Seoul 2012 @ssamture

Page 42: WordCamp Seoul 2012 - WordPress Custom Post type

메타 출력 (filter 이용 )

• `the_content` filter

WordCamp Seoul 2012 @ssamture

Page 43: WordCamp Seoul 2012 - WordPress Custom Post type

메타 출력 (filter 이용 )

WordCamp Seoul 2012 @ssamture

Page 44: WordCamp Seoul 2012 - WordPress Custom Post type

메타 출력 ( 테마에서 )

WordCamp Seoul 2012 @ssamture

Page 45: WordCamp Seoul 2012 - WordPress Custom Post type

메타 출력 ( 테마에서 )

• single-{post_type}.php

WordCamp Seoul 2012 @ssamture

Page 46: WordCamp Seoul 2012 - WordPress Custom Post type

메타 출력

WordCamp Seoul 2012 @ssamture

Page 47: WordCamp Seoul 2012 - WordPress Custom Post type

메타 출력 ( 테마에서 )

WordCamp Seoul 2012 @ssamture

Page 48: WordCamp Seoul 2012 - WordPress Custom Post type

목록 커스터마이징 ( 관리자 화면 )

• manage_edit-{post_type}_column• manage_{post_type}_posts_custom_column

Page 49: WordCamp Seoul 2012 - WordPress Custom Post type

목록 커스터마이징 ( 관리자 화면 )

• 리스트

WordCamp Seoul 2012 @ssamture

Page 50: WordCamp Seoul 2012 - WordPress Custom Post type

목록 커스터마이징 ( 관리자 화면 )

• manage_edit-{post_type}_columns

WordCamp Seoul 2012 @ssamture

Page 51: WordCamp Seoul 2012 - WordPress Custom Post type

목록 커스터마이징 ( 관리자 화면 )

WordCamp Seoul 2012 @ssamture

Page 52: WordCamp Seoul 2012 - WordPress Custom Post type

메타 출력

• manage_{post_type}_posts_custom_column

WordCamp Seoul 2012 @ssamture

Page 53: WordCamp Seoul 2012 - WordPress Custom Post type

메타 출력

WordCamp Seoul 2012 @ssamture

Page 54: WordCamp Seoul 2012 - WordPress Custom Post type

메타 출력

WordCamp Seoul 2012 @ssamture

Page 55: WordCamp Seoul 2012 - WordPress Custom Post type

목록 커스터마이징 ( 관리자 화면 )

WordCamp Seoul 2012 @ssamture

Page 56: WordCamp Seoul 2012 - WordPress Custom Post type

목록 커스터마이징 ( 관리자 화면 )

WordCamp Seoul 2012 @ssamture

Page 57: WordCamp Seoul 2012 - WordPress Custom Post type

텍소노미 추가

• register_taxonomy

Page 58: WordCamp Seoul 2012 - WordPress Custom Post type

텍소노미 추가

• custom post type 을 위한 카테고리 추가

WordCamp Seoul 2012 @ssamture

Page 59: WordCamp Seoul 2012 - WordPress Custom Post type

텍소노미 추가

• register_taxonomy($taxonomy, $object_type, $args)

WordCamp Seoul 2012 @ssamture

Page 60: WordCamp Seoul 2012 - WordPress Custom Post type

텍소노미 추가

WordCamp Seoul 2012 @ssamture

Page 61: WordCamp Seoul 2012 - WordPress Custom Post type

Parent Post in a Metabox

• add_meta_box

Page 62: WordCamp Seoul 2012 - WordPress Custom Post type

Parent Post in a Metabox

• add_meta_box

WordCamp Seoul 2012 @ssamture

Page 63: WordCamp Seoul 2012 - WordPress Custom Post type

Parent Post in a Metabox

• add_meta_box

WordCamp Seoul 2012 @ssamture

Page 64: WordCamp Seoul 2012 - WordPress Custom Post type

Parent Post in a Metabox

WordCamp Seoul 2012 @ssamture

Page 65: WordCamp Seoul 2012 - WordPress Custom Post type

Querying

• WP_Query

Page 66: WordCamp Seoul 2012 - WordPress Custom Post type

메타 출력

WordCamp Seoul 2012 @ssamture

Page 67: WordCamp Seoul 2012 - WordPress Custom Post type

메타 출력

WordCamp Seoul 2012 @ssamture

Page 68: WordCamp Seoul 2012 - WordPress Custom Post type

끝 , 감사합니다 .^^