No option to add a ‘featured image’ in my wordpress installation

Hay, I’ve installed WordPress 3 on my server, and duplicated the stock theme and made some amends to it. However, when i add a post, i don’t see an option to add a ‘featured image’. Has this featured been removed? How do i reactivate it?

Thanks

2 Answers
2

Your theme must indicate that it supports post thumbnails:

if ( function_exists('add_theme_support') ) {
  add_theme_support('post-thumbnails');
  // If not the standard size, state your size too
  set_post_thumbnail_size( 200, 200, false );
}

Leave a Comment