特色图片元数据不显示自定义帖子类型

时间:2016-05-14 06:23:12

标签: php wordpress custom-post-type

我正在尝试为自定义帖子类型添加精选图片

我在主题的functions.php文件中添加了主题支持。以下是代码:

function custom_theme_setup() {
    add_theme_support( 'post-formats',array('link','gallery'));
    add_theme_support( 'post-thumbnails');
    add_theme_support( 'custom-background');
    add_theme_support( 'custom-header');
    add_theme_support( 'custom-logo');
    add_theme_support( 'automatic-feed-links');
    // add_theme_support( 'html5');
    add_theme_support( 'title-tag');
}
add_action( 'init', 'custom_theme_setup');

我还尝试将支持子句添加到寄存器帖子类型部分,但仍然没有。

这是注册自定义帖子类型代码:

function movies_create_post_type() {
  register_post_type( 'movies',
    array(
      'labels' => array(
        'name' => __( 'Movies' ),
        'singular_name' => __( 'Movie' ),
        'supports' => array( 'title', 'editor', 'comments', 'excerpt', 'custom-fields', 'thumbnail' ),
      ),
      'public' => true,
      'has_archive' => true,
      'menu_icon' => 'dashicons-format-video',
      'show_ui' => true,
    )
  );
}

add_action('init','movies_create_post_type');

我到处搜索,但无法找到解决此问题的正确方法。

  

注意:我可以为我的正常帖子设置精选图片,问题是   自定义帖子类型。我也通过一个注册自定义帖子类型   插件,我自己编码。

提前致谢。

2 个答案:

答案 0 :(得分:0)

尝试将支持数组放在两个索引之外,就像公共has_archive menu_icon show_ui一样

function movies_create_post_type() {
  register_post_type( 'movies',
    array(
      'labels' => array(
        'name' => __( 'Movies' ),
        'singular_name' => __( 'Movie' )
      ),
      'public' => true,
      'supports' => array( 'title', 'editor', 'comments', 'excerpt', 'custom-fields', 'thumbnail' ),
      'has_archive' => true,
      'menu_icon' => 'dashicons-format-video',
      'show_ui' => true,
    )
  );
}

希望它有所帮助!

答案 1 :(得分:0)

在支持参数中不传递标签数组

'supports' => array( 'title', 'editor', 'comments', 'excerpt', 'custom-fields', 'thumbnail' ),

请检查以下代码

function movies_create_post_type() {
  register_post_type( 'movies',
    array(
      'labels' => array(
        'name' => __( 'Movies' ),
        'singular_name' => __( 'Movie' )
      ),
      'public' => true,
      'supports' => array( 'title', 'editor', 'comments', 'excerpt', 'custom-fields', 'thumbnail' ),
      'has_archive' => true,
      'menu_icon' => 'dashicons-format-video',
      'show_ui' => true,
    )
  );
}

了解详情register_post_type