web-dev-qa-db-ja.com

カスタム投稿タイプのサムネイルサポートをどのように追加しますか?

サムネイルのサポートはpostに対して機能していますが、productという別のタイプの投稿があり、これに対しては機能していません。私は試しています:add_theme_support( 'post-thumbnails', array( 'post', 'product' ) );私はまた、マルチ投稿サムネイルプラグインを使用しています。

13
Andrew Welch

デフォルトでは、すべてのカスタム投稿でタイトルとエディターのサポートが追加されます。コメント、サムネイル、リビジョンなどを追加したい場合は、support引数に手動で追加する必要があります。

カスタム投稿タイプの登録方法について詳しく読む heresupportに関するセクションを参照して、追加できるものを確認してください。

カスタムポスト「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' );
24

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

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

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

add_post_type_support( 'product', 'thumbnail' );
1
Capsule