尝试使用ACF设置特定的图像尺寸和裁剪

时间:2014-04-24 作者:bestprogrammerintheworld

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 还是我遗漏了什么?

1 个回复
SO网友:bestprogrammerintheworld

显然。。。我WAS missing something. 我上传了一些尺寸较小的图片,然后在自定义的图片大小中指定,它们不会放大。500x500或更高的图像可以正常工作,但如果我上载的图像宽度为200x300,则无法按预期工作。这个问题在法典中没有很好的记录。

结束

相关推荐

Adding Relevant Post Images

我想在每个帖子页面的末尾添加相关帖子with an image 在我新创建的网站中http://www.techberita.com但作为一个初学者,这对我来说是一个很大的问题,因为我不能做到这一点,因为我对PHP和wordpress没有太多的知识。我搜索了一些插件,但没有找到一个好的插件。我希望很快得到答复。最好使用php代码。