How to enable post thumbnails for custom post types too?
To enable the featured image function for a custom post type too, insert the following code snippet into the functions.php file.
This will allow you to use the featured image function for your custom post type. Just replace MYCPTNAME with the actual name of your custom post type.
<?php if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' );}
add_post_type_support( 'MYCPTNAME', 'thumbnail' );
?>
This will enable the featured image function for the MYCPTNAME custom post type too.