它可以在图像处于响应模式时自动更改图像。我们可以在这里添加所有图像,以便根据屏幕大小自动剪切。
add_action( \'after_setup_theme\', \'wpdocs_theme_setup\' );
function wpdocs_theme_setup() {
add_image_size( \'category-thumb\', 300 ); // 300 pixels wide (and unlimited height)
add_image_size( \'homepage-thumb\', 220, 180, true ); // (cropped)
}