Hi!
I have a problem with this plugin.
Featured image doesn't work for custom post type when Meteor Slides plugin is installed. Any ideas?
Thanks in advance
Johan
Hi!
I have a problem with this plugin.
Featured image doesn't work for custom post type when Meteor Slides plugin is installed. Any ideas?
Thanks in advance
Johan
Hi Johan, could you clarify your problem? By the featured image not working, do you mean that the link to add a featured image isn't there at all? Or that you can add a featured image, but it doesn't show up on the site?
When you install Meteor Slides, is the featured image for the slides not working, or is it breaking the featured image functionality on a different custom post type?
Hi again!
I can't add a feature image for another custom post type when Meteor Slides is installed.
thanks again
Did you specify the other custom post type with an array when you added thumbnail support?
Check out this Q/A from the FAQ:
I have another custom post type that uses featured images, and when I install Meteor Slides, it disables the featured image box in my custom post type, what's up with that?
Meteor Slides is setup to check for post thumbnail support and create an array with the slides post type and any other post types that are in use. But in order for that to work, your theme or plugin needs to specify any custom post types in an array.
okey,
So how do I "specify any custom post types in an array"?
Thanks for the help!
So you are enabling featured images like this right?
add_theme_support( 'post-thumbnails' );
That enables featured images for posts and pages, and in some cases custom post types.
To specify a certain post type you need to add an array:
add_theme_support( 'post-thumbnails', array( 'customtype' ) );
If you need featured images for posts or pages, add that to your array:
add_theme_support( 'post-thumbnails', array( 'post', 'customtype' ) );
For more info in featured images, check out this post by Mark Jaquith.
@JLeuze : Great, this helps a lot!!!
No problem!
This topic has been closed to new replies.