Wondering if anyone knows (or if it's even possible) to use more than one Post Thumbnail in WP 2.9.
I have my functions.php set up as:
<?php if ( function_exists( 'add_theme_support' ) ) { // Added in 2.9
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 100, 35, true ); // Normal post thumbnails
add_image_size( 'single-post-thumbnail', 400, 9999 ); // Permalink thumbnail size
}?>
And call my image (on my homepage) I set when writing a post as:
<?php the_post_thumbnail(); ?>
Is there a way to add more than one Post Thumbnail when writing a post and have it displayed?
Thanks! :]