我希望我在特定页面上的缩略图300px
&次数;100px
, 确切地目前,图像会一直缩小,直到达到300像素或100像素。如何将图像精确裁剪到300倍;100(最好没有图像失真)。
// functions.php:
if ( function_exists( \'add_image_size\' ) ) add_theme_support( \'post-thumbnails\' );
if ( function_exists( \'add_image_size\' ) ) {
add_image_size( \'post-thumb\', 620, 207, true );
add_image_size( \'home-thumb\', 220, 180, true );
add_image_size( \'index-thumb\', 300, 100, true );
}
// index.php:
if ( has_post_thumbnail()) the_post_thumbnail(\'index-thumb\');