如何为自定义帖子类型添加缩略图支持?


16

缩略图支持适用于帖子,但我还有另一种称为product的帖子类型,它不适用于此帖子。我正在尝试:add_theme_support( 'post-thumbnails', array( 'post', 'product' ) ); 我也在使用多帖子缩略图插件。

Answers:


24

默认情况下,所有自定义帖子都会添加对“标题”和“编辑器”的支持,如果您需要更多内容,例如注释,缩略图和修订,则必须在support参数中手动添加。

在此处阅读有关如何注册自定义帖子类型的更多信息,还可以找到有关支持的部分以了解可以添加的内容。

这是一个为自定义帖子“ 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' );

我正在使用post-thumbnail而不是thumbnail。现在这很有意义。post-thumbnail添加帖子的缩略图,但是对于自定义帖子类型,则需要缩略图
Akash Kumar Sharma 2015年

1
我的“支持”数组中有“缩略图”,但我无法在自定义帖子中保存特色图片。
esmitex

12

对于自定义帖子,首先必须启用对缩略图的支持:

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

为我工作得很完美,但是请您解释一下为什么“ add_theme_support('post-thumbnails');” 有必要添加吗?
阿迪

2

add_post_type_support()如果不想supports在注册自定义帖子类型时重写默认选项,也可以使用添加单个功能:

add_post_type_support( 'product', 'thumbnail' );
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.