问题描述
缩略图支持正在发布,但我有另一个称为产品的帖子类型,它不适用于此。我正在尝试:add_theme_support( 'post-thumbnails', array( 'post', 'product' ) );
我也使用多个 post thumbnail 插件。
最佳解决方案
默认情况下,所有自定义帖子都会添加对标题和编辑器的支持,如果您想要更多的内容,如注释,缩略图和修订版,则必须在支持参数中手动添加。
阅读更多关于如何注册您的自定义帖子类型 here,您还可以找到有关支持的部分,看看可以添加什么。
这里有一个例子,我们可以注册自定义帖子的缩略图”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' );
参考文献
注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。