Skip to the content
Comprehensive Assessment
// ================= START CUSTOM THUMBNAIL SIZE ============================== //
set_post_thumbnail_size( 250, 165);
// The parameters for set_post_thumbnail_size are in this order: width, height.
add_image_size( 'thumbs', 250, 165 );
// Image size for thumbnails displayed by thumbs.php template
// 'thumbs' here refers to the parameter on line 61 of thumbs.php: echo the_post_thumbnail('thumbs');
// ================= END CUSTOM THUMBNAIL SIZE ============================== //