Please help set featured image for custom post types
I just upgraded to 3.0.5.3 and I can't see the Featured Image option for Ads in the admin Edit menu.
Why doesn't this work when adding to the theme-functions.php?
// activate theme support items
if (function_exists('add_theme_support')) { // added in 2.9
// this theme uses post thumbnails
add_theme_support('post-thumbnails', array('post', 'page',
'ad_listing', 'ad'));
set_post_thumbnail_size(100, 100); // normal post thumbnails
// add default posts and comments RSS feed links to head
add_theme_support( 'automatic-feed-links' );
}
Do I need to add something to the wordpress functions.php?
I tried adding this but it causes an error;
function add_theme_support('post-thumbnails');