我创建了一个名为横幅的自定义帖子类型,并希望在该帖子类型中启用缩略图。因此,我将以下代码放在我的函数文件的起始标记之后,但横幅文章类型仍然没有在管理面板中显示精选图像选项。
if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails', array( 'banner' ) );
}
如果我用帖子或页面替换横幅,则特色图像选项会显示在相应的菜单选项中。
答案 0 :(得分:1)
您需要确保自定义帖子类型允许使用精选图片。以下是允许缩略图的自定义帖子类型的示例:
<?php
function your_custom_post_types() {
// Portfolio
$labels_portfolio = array(
'add_new' => __('Add New', 'portfolio'),
'add_new_item' => __('Add Portfolio Item'),
'edit_item' => __('Edit Portfolio Post'),
'menu_name' => __('Portfolio'),
'name' => __('Portfolio', 'post type general name'),
'new_item' => __('New Portfolio Item'),
'parent_item_colon' => '',
'singular_name' => __('Portfolio Post', 'post type singular name'),
'view_item' => __('View Portfolio Item'),
);
$args_portfolio = array(
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'labels' => $labels_portfolio,
'menu_position' => 4,
'public' => true,
'publicly_queryable' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'portfolio', 'with_front' => true ),
'show_in_menu' => true,
'show_ui' => true,
'supports' => array( 'comments', 'editor', 'excerpt', 'thumbnail', 'title' ),
);
register_post_type( 'portfolio', $args_portfolio );
}
?>
允许缩略图的行是这一行:
'supports' => array( 'comments', 'editor', 'excerpt', 'thumbnail', 'title'