Enable featured image for custom post type

In function.php:

add_theme_support('post-thumbnails');

in custom post type definition:

'supports' => array(
'title',
'editor',
'thumbnail',
'excerpt',
'custom-fields',
),

Leave a Reply

Your email address will not be published. Required fields are marked *