voceconnect / multi-post-thumbnails

Adds multiple post thumbnails to a post type. If you've ever wanted more than one Featured Image on a post, this plugin is for you.
143 stars 63 forks source link

How to add on multi post type Like (page,post) #92

Closed rvpatel closed 8 years ago

rvpatel commented 8 years ago
/*Banner Image*/
if (class_exists('MultiPostThumbnails')) {
    new MultiPostThumbnails(
        array(
            'label' => 'Header Banner',
            'id' => 'secondary-image',
            'post_type' => 'post'
        )
    );
    new MultiPostThumbnails(
        array(
            'label' => 'Header Banner',
            'id' => 'secondary-image',
            'post_type' => 'page'
        )
    );
}