サムネイルのサポートは投稿用に機能していますが、productという別の投稿タイプがあり、これには機能していません。私が試しています:add_theme_support( 'post-thumbnails', array( 'post', 'product' ) );
私は複数投稿サムネイルプラグインも使用しています。
サムネイルのサポートは投稿用に機能していますが、productという別の投稿タイプがあり、これには機能していません。私が試しています:add_theme_support( 'post-thumbnails', array( 'post', 'product' ) );
私は複数投稿サムネイルプラグインも使用しています。
回答:
デフォルトでは、すべてのカスタム投稿でタイトルとエディターのサポートが追加されます。コメント、サムネイル、リビジョンなどを追加する場合は、サポート引数に手動で追加する必要があります。
カスタム投稿タイプの登録方法の詳細については、こちらをご覧ください。また、サポートに関するセクションを参照して、追加できるものを確認してください。
カスタムポスト「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' );