我正在尝试在自定义后置循环中调整缩略图后的图像大小但是采用原始图像大小。
`
<div id="main-slider" class="flexslider">
<ul class="slides">
<?php $loop = new WP_Query(array('post_type' => 'sliders', 'orderby' => 'post_id', 'order' => 'ASC')); ?>
<?php while($loop->have_posts()): $loop->the_post(); ?>
<li>
<?php the_post_thumbnail('homepage-thumb'); ?>
<div class="flex-caption">
<h3><?php the_title(); ?></h3>
<p><?php the_excerpt(); ?></p>
<a href="#" class="btn btn-theme">Learn More</a>
</div>
</li>
<?php endwhile; ?>
</ul>
</div>
<!-- end slider -->
</div>`
在function.php中制作图像的这种硬裁剪功能 -
add_theme_support( 'post-thumbnails' );
add_image_size( 'homepage-thumb', 1024, 360, true );
它没有显示图像的硬裁剪尺寸。
请帮我解决问题。提前致谢