답변:
기본적으로 모든 사용자 정의 게시물은 제목 및 편집기에 대한 지원을 추가합니다. 주석, 축소판 및 개정판과 같은 더 많은 자료를 원할 경우 지원 인수 에서 수동으로 추가해야합니다 .
맞춤 게시물 유형을 등록하는 방법에 대한 자세한 내용은 여기 에서 추가 할 수있는 항목을 확인 하기위한 지원 섹션을 찾을 수 있습니다.
다음은 커스텀 포스트 "Books"에 대한 썸네일을 등록하는 예제이며 다음을 지원합니다. 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments'
function codex_custom_init() {
$labels = array(
'name' => _x('Books', 'post type general name'),
'singular_name' => _x('Book', 'post type singular name'),
'add_new' => _x('Add New', 'book'),
'add_new_item' => __('Add New Book'),
'edit_item' => __('Edit Book'),
'new_item' => __('New Book'),
'all_items' => __('All Books'),
'view_item' => __('View Book'),
'search_items' => __('Search Books'),
'not_found' => __('No books found'),
'not_found_in_trash' => __('No books found in Trash'),
'parent_item_colon' => '',
'menu_name' => __('Books')
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => true,
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )
);
register_post_type('book',$args);
}
add_action( 'init', 'codex_custom_init' );
맞춤 게시물의 경우 먼저 미리보기 이미지를 지원해야합니다.
add_theme_support( 'post-thumbnails' );
function theme_setup() {
register_post_type( 'yourposttype', array(
...,
'supports' => array('title', ...,'thumbnail'),
));
}
add_action( 'after_setup_theme', 'theme_setup' );