所以我的目标是找到一种方法,只为在自定义帖子类型上显示添加更多缩略图,例如我希望为特色帖子提供大图像(不是同一图像),为默认帖子提供不同的图像图。
答案 0 :(得分:7)
最后,我遵循了本教程,它完全符合我对T的要求。
http://www.lifeonlars.com/wordpress/how-to-add-multiple-featured-images-in-wordpress
答案 1 :(得分:2)
你试试这个add_image_size
答案 2 :(得分: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步立即检查。
答案 3 :(得分:0)
我可以在这里编写完整的代码,但点击此tutorial link会更容易:)