View Single Post
Old 04-29-2011, 11:49 AM  
harvey
Confirmed User
 
harvey's Avatar
 
Industry Role:
Join Date: Jul 2001
Location: 127.0.0.1
Posts: 9,266
I never used the twenty ten theme so I really don't know what featured image are you talking about, but I did some research and it seems it's a fucking mess, quite unexpected since you would expect a flawless theme. Anyway, just do this:

Code:
if ( function_exists( 'add_theme_support' ) ) { // Added in 2.9
	add_theme_support( 'post-thumbnails' );
	set_post_thumbnail_size( 150, 150, true ); // Normal post thumbnails
	add_image_size( 'myfeatured', 300, 168 ); // Permalink thumbnail size
}
and then in your theme's single.php and index.php (ie under the title of the post)

Code:
<?php the_post_thumbnail('myfeatured'); ?>
__________________
This post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truth
harvey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote