My question is about image sizing. 我知道如何在WP中本地调整尺寸/裁剪
add_image_size( \'thumb-crazy\', 500,500, true);
然后在模板类型中:
if ( has_post_thumbnail() ) {
the_post_thumbnail(\'thumb-crazy\'); //This images get dimensions 500x500.
}
但我正在努力设置用于ACF插件的图像大小:
当我把它放在函数中时。php
add_image_size( \'thumb-crazy\', 500,500, true);
我选择
thumb-crazy
从图像字段的属性。(根本不做任何裁剪或完全其他维度)
$image = get_field(\'image_personnel\');
$size = \'thumb-crazy\';
echo wp_get_attachment_image( $image, $size );
它没有图像被裁剪为500x500的效果。为什么?
Is this an issue with the plugin 还是我遗漏了什么?