2011-09-30 180 views
3

所以我的目標是找到一種方法來添加更多縮略圖僅用於顯示自定義帖子類型,例如我希望有一個大圖像(不是相同的圖像)的特色帖子和不同的圖像圖像爲默認視圖。多個精選圖像Wordpress

回答

0

我可以在這裏寫完整的代碼,但點擊這個tutorial link更容易:)

1

我從網上得到了一個解決方案。我還定製了一些代碼。你可以檢查這個。

第1步從此link下載此圖書館並放在functions.php(主題根)旁邊。

第2步:將以下代碼複製到functions.php。現在

/* 
* Code for Multiple Featured Image. 
* Multiple Featured image is only for your selected post type. 
*/ 
require_once('library/multi-post-thumbnails.php'); 
if (class_exists('MultiPostThumbnails')) { 
new MultiPostThumbnails(array(
    'label' => '2nd Feature Image', 
    'id' => 'feature-image-2', 
    'post_type' => 'your_post_type_name' 
     ) 
); 
new MultiPostThumbnails(array(
    'label' => '3rd Feature Image', 
    'id' => 'feature-image-3', 
    'post_type' => 'your_post_type_name' 
     ) 
); 
new MultiPostThumbnails(array(
    'label' => '4th Feature Image', 
    'id' => 'feature-image-4', 
    'post_type' => 'your_post_type_name' 
     ) 
); 
}; 

步驟3檢查。