カスタム投稿タイプのサムネイルサポートを追加するにはどうすればよいですか?


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
「サポート」配列に「サムネイル」がありますが、カスタム投稿に注目の画像を保存できません。
esmitex

11

カスタム投稿の場合、まずサムネイルのサポートを有効にする必要があります。

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

2

カスタム投稿タイプを登録するときにadd_post_type_support()デフォルトのsupportsオプションを書き換えたくない場合は、単一の機能を追加するために使用することもできます。

add_post_type_support( 'product', 'thumbnail' );
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.