最合适的回答,由SO网友:Will S. 整理而成
您可以在函数文件中执行类似操作。
add_image_size( \'category-thumb\', 300 ); // 300 pixels wide (and unlimited height)
add_image_size( \'homepage-thumb\', 220, 180, true ); // (cropped)
然后,您可以这样做,在管理区域中为您的自定义大小指定一个特定的名称。
add_filter( \'image_size_names_choose\', \'my_custom_sizes\' );
function my_custom_sizes( $sizes ) {
return array_merge( $sizes, array(
\'your-custom-size\' => __( \'Your Custom Size Name\' ),
) );
}
可以找到更多信息
here 和
here.