add_image_size not working

时间:2016-03-14 作者:Rohitink

我正在尝试使用以下代码调整图像大小:

add_image_size(\'poster-full\', 450, 9999, false);add_image_size(\'poster-full\', 450);

我需要调整它的宽度,高度应该是成比例的。当我运行“重新生成缩略图”插件时,我看到图像的大小已正确调整。对于上述两种情况。

但是,当我这样做的时候the_post_thumbnail(\'poster-full\'), 将显示原始图像,而不是已调整大小的图像。我手动搜索了目录。已调整大小的图像存在。

1 个回复
SO网友:Fiaz Husyn

要使其工作,必须添加缩略图支持。您可以在中使用以下代码functions.php 添加支持

add_theme_support( ‘post-thumbnails’ );
add_image_size(\'poster-full\', 450, 9999, false);
并显示图像:

if ( has_post_thumbnail() ) {
 the_post_thumbnail("poster-full");
}else{
 echo "No thumbnail";
}

相关推荐

Images with overlay

我有一些图片在一个容器中,我想添加一个覆盖和图标。这不是现成的,但我找到了一些有用的代码:HTML:<div class=\"main\"> <span class=\"featured\"><img src=\"http://joshrodg.com/IMG_001-258x258.jpg\" title=\"\" alt=\"\"></span> </div> CSS:.featured {