2012-09-22 111 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'); 
相關問題