高级自定义字段图库缩略图大小

Advanced Custom Fields Gallery Thumbnail Sizes

我使用 WordPress 的 acf pro 插件创建了一个画廊。这一切都与横向格式的图像完美配合。但是,由于缩略图是固定宽度的,而纵向图像的比例不同,因此当按比例缩小时,它们的高度比横向图像高得多,这显然看起来很不对。

我想要解决的问题是,是否有办法裁剪缩略图的图像,但仍将原始图像用于灯箱。

您可以查看图库here:

代码如下:

 <?php
$gallery = get_field('gallery');
$images = array();


$items_per_page = 12;
$total_items = count($gallery);
$size = 'full'; 
$total_pages = ceil($total_items / $items_per_page);

if(get_query_var('paged')){
    $current_page = get_query_var('paged');
}
elseif (get_query_var('page')) {
    $current_page = get_query_var('page');
}
else{
    $current_page = 1;
}
$starting_point = (($current_page-1)*$items_per_page);

if($gallery){
    $images = array_slice($gallery,$starting_point,$items_per_page);
}

if(!empty($images)){
     ?>  <div id="slider" class="flexslider"> 
                  <div class="gallery-div">
                    <?php foreach( $images as $image ): ?>
                            <a href="<?php echo $image['url']; ?>"  data-fancybox="gallery" data-caption="<?php echo $image['alt']; ?>" ><img src="<?php echo $image['sizes']['medium']; ?>" alt="<?php echo $image['alt']; ?>" /></a>
                    <?php endforeach; ?>
                  </div>
                </div>
                <?php
}

?><div class="pagination-links">
<?php
$big = 999999999;
echo paginate_links(array(
    'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
    'format' => '?paged=%#%',
    'current' => $current_page,
    'total' => $total_pages,
    'before_page_number' => '<span class="screen-reader-text">'.$translated.' </span>'
));?>
</div>
<?Php
?>

如有任何帮助,我们将不胜感激。

您的 Fancybox 在 link 上,它将在 href 中打开 url,但是您没有理由不能在 img 中使用不同的图片] 标签。为什么不试试这个:

<a href="<?php echo $image['url']; ?>" data-fancybox="gallery" data-caption="<?php echo $image['alt']; ?>" >
  <img src="<?php echo $image['sizes']['thumbnail']; ?>" alt="<?php echo $image['alt']; ?>" />
</a>

这应该会在灯箱中为您提供完整图片,但会在您图库的屏幕上显示缩略图。