开发者

Multiple Featured Images Wordpress

So my aim is to find a method of adding more thumbnails only for displaying on a custom post type, for example I wis开发者_运维知识库h to have a large image (not the same image) for a featured post and a different image for the default view.


In the end i followed this tutorial and it did exactly what i required to a T.

http://www.lifeonlars.com/wordpress/how-to-add-multiple-featured-images-in-wordpress


have you try this add_image_size

why don't you use custom post template plugin


I got a solution from online. I also customized some code. You can check this.

Step 1 Download this library from this link and put beside functions.php ( theme root ).

Step 2: Copy this code below to 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'
        )
);
};

Step 3 Check now.


I can write entire code here, but clicking on this tutorial link is much easier :)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜