View Single Post
Old 10-11-2011, 11:19 AM  
V_RocKs
Damn Right I Kiss Ass!
 
Industry Role:
Join Date: Dec 2003
Location: Cowtown, USA
Posts: 32,423
add to functions.php:
Code:
add_theme_support( 'post-thumbnails' );
add_image_size( 'homepage-thumb', 500, 2000 ); // 500 pixels wide by 2000 pixels tall, soft proportional crop mode
Inside index.php put:
Code:
<?php if ( has_post_thumbnail() ) { the_post_thumbnail( 'homepage-thumb' ); } ?>
That is in place of your normal thumb. Then it will be smaller.
V_RocKs is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote