上传后,WP上有一个deault功能可用于裁剪图像。您可以编辑上载的图像,也可以根据自己的首选项裁剪图像。How to crop rotate scale and flip images in wordpress
WordPress默认设计为自动生成3种类型的任何上传图像(媒体)裁剪,以确保必要时不同大小的网站速度。因此,上载原始图像时,至少会有4个文件-
The Original File (not-cropped),
=> the_post_thumbnail(\'full\'); // Original image resolution (unmodified)
Large,
=> the_post_thumbnail(\'large\'); // Large resolution (default 640px x 640px max)
Medium, and
=> the_post_thumbnail(\'medium\'); // Medium resolution (default 300px x 300px max)
Thumbnail.
=> the_post_thumbnail(\'thumbnail\'); // Thumbnail (default 150px x 150px max)
Custom size
the_post_thumbnail( array(100,100) ); // Other resolutions
您可以根据自己的喜好添加其他自定义大小,因为:
=>add\\u image\\u size()//将自动创建适合在网站主题中定位的图像版本。
使用add_image_size() 带有所需参数的函数允许您为站点添加新大小。在函数中使用该函数。php添加所需的图像大小:
希望有帮助!!