2012-09-22 115 views
2

我想添加一个精选图像到我的主题,但不是为文章或页面 - 我创建了一个名为属性(它为房地产经纪人)的自定义类型,所以如何我是否启用精选图片,因为它没有出现在sceen选项中?WordPress的 - 添加精选图像自定义帖子类型

希望有人能帮助,

$property = new Cuztom_Post_Type('Property', array(
    'supports' => array('title', 'editor') 
)); 

回答

10
$property = new Cuztom_Post_Type('Property', array(
    'supports' => array('title', 'editor', 'thumbnail') 
)); 

我似乎已经解决了自己的问题 - 见上面

1

这可能帮助别人,

add_theme_support('post-thumbnails'); 
add_post_type_support('my_product', 'thumbnail');  
function create_post_type() { 
     register_post_type('my_product', 
      array(
       'labels' => array(
        'name' => __('Products'), 
        'singular_name' => __('Product') 
       ), 
       'public' => true, 
       'has_archive' => true 
      ) 
     ); 
    } 
    add_action('init', 'create_post_type'); 
相关问题