I am working on a theme that shows 200/200px post thumbnail on the home page and 500/300px image on the category page.
Here is what I have in fuctions.php but it doesn't seem to work (only the homepage thumbnail works)
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 200, 200, true );
add_image_size( 'homepage', 200, 200, true );
add_image_size( 'category', 500, 300, true );