맞춤 게시물 유형에 대한 미리보기 이미지 지원을 어떻게 추가합니까?


16

미리보기 이미지 지원은 게시에 사용 중이지만 product라는 다른 게시물 유형이 있으며 작동하지 않습니다. 나는 노력하고 있습니다 : add_theme_support( 'post-thumbnails', array( 'post', 'product' ) ); 또한 여러 게시물 축소판 플러그인을 사용하고 있습니다.

답변:


24

기본적으로 모든 사용자 정의 게시물은 제목 및 편집기에 대한 지원을 추가합니다. 주석, 축소판 및 개정판과 같은 더 많은 자료를 원할 경우 지원 인수 에서 수동으로 추가해야합니다 .

맞춤 게시물 유형을 등록하는 방법에 대한 자세한 내용은 여기 에서 추가 할 수있는 항목을 확인 하기위한 지원 섹션을 찾을 수 있습니다.

다음은 커스텀 포스트 "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' );

thumbnail 대신 post-thumbnail을 사용하고있었습니다. 이제 말이 되네요. post-thumbnail은 게시물에 썸네일을 추가하지만 커스텀 게시물 유형에는 썸네일이 필요합니다
Akash Kumar Sharma

1
'supports'배열에 '축소판'이 있지만 맞춤 게시물에 추천 이미지를 저장할 수 없습니다.
esmitex

12

맞춤 게시물의 경우 먼저 미리보기 이미지를 지원해야합니다.

add_theme_support( 'post-thumbnails' );
function theme_setup() {
    register_post_type( 'yourposttype', array(
        ...,
        'supports' => array('title', ...,'thumbnail'),
    ));
}
add_action( 'after_setup_theme', 'theme_setup' );

나를 위해 완벽하게 일했지만 왜 "add_theme_support ( 'post-thumbnails');" 추가해야합니까?
Adi

2

맞춤 게시물 유형을 등록 할 때 add_post_type_support()기본 supports옵션 을 다시 쓰지 않으려면 단일 기능을 추가하는 데 사용할 수도 있습니다 .

add_post_type_support( 'product', 'thumbnail' );
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.