可以使用创建自定义大小的图像add_image_size()
在函数中。php
function add_custom_size_images() {
// Add image size width 300 with unlimited height.
add_image_size( \'featured-image-300\', 300 );
}
add_action( \'after_setup_theme\', \'add_custom_size_images\' );
并在模板中获取创建时使用的大小
the_post_thumbnail()
the_post_thumbnail( \'featured-image-300\' );
Notice: 如果你想让它处理你已经上传的旧图像,你需要重新生成缩略图。这里有一些插件。
例如插件https://wordpress.org/plugins/regenerate-thumbnails/