Yes, once you have your additional image size you will also need to
add thumbnail support via the supports argument when you register your
custom post type.
Something like:
$args = array(
'label' => 'My Custom Posts',
'singular_label' => 'My Custom Post',
'public' => TRUE,
'supports' => array( 'title', 'editor', 'thumbnail' )
);
register_post_type( 'mycustompost', $args );
On 1 May 2010 10:49, [email protected]
<[email protected]> wrote:
> Is it possible to add thumbnail support to custom post types? Something like:
>
> add_image_size( 'single-portfolio-thumbnail', 400, 9999 );
> _______________________________________________
> wp-testers mailing list
> [email protected]
> http://lists.automattic.com/mailman/listinfo/wp-testers
>
_______________________________________________
wp-testers mailing list
[email protected]
http://lists.automattic.com/mailman/listinfo/wp-testers