如何使 Wordpress 缩略图网格大小相同

How to make Wordpress thumbnails grid same size

我正在尝试将帖子中的 Wordpress 缩略图和标题生成到网格中。它按预期生成,但不能使缩略图大小相同。如果图像高度大于宽度,则不会像我对自定义 add_image_size() 函数所期望的那样进行裁剪。

关于如何在网格中制作相同大小的图像有什么想法吗?

我在 Wordpress 函数中使用的代码:

add_image_size( 'cust-thumb', 400, 300, true );

自定义主题文件代码:

<div class="container-fluid p-5">
    <div class="row">
    <?php while($catquery->have_posts()) : $catquery->the_post(); ?>
    <div class="col-md-3 col-sm-4 col-12 text-center pb-4 col">
        <a href="<?php the_permalink() ?>" rel="bookmark">
        <?php the_post_thumbnail('cust-thumb'); ?>
        <h5 class="pt-2"><?php the_title(); ?></h5></a>
    </div> 
    <?php endwhile; ?> 
    </div>
</div>

尝试

add_image_size( 'cust-thumb', 400, 300, array( 'center', 'center' ) );