我正在开发一个主题,我正在使用Aqua大小调整脚本来调整主题中图像的大小,因为我的大部分需求都是通过这个脚本来实现的。它在我的本地主机上工作正常,但它在我的登台服务器上运行不正常。当我回应它所说的图像时,
Boolean (False)
<?php
$thumb1 = get_post_thumbnail_id();
$img_url1 = wp_get_attachment_url( $thumb1,'full' ); //get full URL to image (use "large" or "medium" if the images too big)
$image1 = aq_resize( $img_url1, 337, 182, true); //resize & crop the image
?>
<pre><?php var_dump($image1); ?></pre>
<?php if($image1): ?>
<img src="<?php echo $image1; ?>" alt="<?php the_title(); ?>">
<?php endif; ?>