Brad, the thumbnails in ver. 0.4.1 aren't working.
You need to change "post-thumbnails" to "thumbnail" under Supports. (3 changes).
I already made the changes to the plugin and it works.
Might want to include a note that Thumbnail is called Featured Image.
Ron
http://wordpress.org/extend/plugins/custom-post-type-ui/
Thanks Ron. This will be updated in v0.5 releasing later today
Chad Holden
Member
Posted 3 years ago #
It still doesn't seem to be working for me in WP3 b1 and using v0.5.2 of your plugin. Great little plugin BTW.
HeroicNate
Member
Posted 2 years ago #
how do you get post type write panels to support featured images? Using the support => thumbnail doesn't seem to work.
HeroicNate
Member
Posted 2 years ago #
JaffyDesigns
Member
Posted 2 years ago #
Hi, I'm wondering about this too, as I have the "Post Thumbnails" option checked within the plugin's advanced options, but it's not appearing in my custom post add/edit menu screen. I know that support for this meta box is already enabled in my theme, b/c I see it on my regular post add/edit screen.
I'm using version 0.6.1 - any help you could provide would be much appreciated!
Michal Mau
Member
Posted 2 years ago #
I know that support for this meta box is already enabled in my theme, b/c I see it on my regular post add/edit screen.
For me simply enabling it with add_theme_support( 'post-thumbnails');,
(which should work for ALL post types) didn't work, but making an array did:
add_theme_support( 'post-thumbnails', array( 'post', 'page', 'custom_post_name' ) );
Well, I'm not using the discussed plugin but I thought this could be helpful anyway.
paolo.valier
Member
Posted 2 years ago #
thanks mau!
this has been really helpful indeed, it's the solution -a least for me