我正在使用ACF Plugin. 我希望有一个可以上传图像的字段,结果将在Lightbox中显示完整图像,然后将完整图像的大小调整为该字段的缩略图(如普通Lightbox)。
到目前为止,我这里有剧本,这就是我现在的位置:
<div class="single last">
<a href="<?php echo the_field(\'image_gallery\'); ?>" rel="lightbox" title="<?php the_title(); ?>">
<?php
$main_car_pic = addslashes(the_repeater_field(\'image_gallery\'));
$reg_ext = "#.jpg#i";
$thumb_ext = "-150x150.jpg";
$car_thumb = preg_replace($reg_ext, $thumb_ext, $main_car_pic);
echo $car_thumb
?>
ACF Repeater字段工作不正常,我无法工作。为什么有人有过ACF和调整缩略图图像大小的经验。。希望我所做的代码能对你有所帮助,如果你能发表评论,我会非常感激,我可以提供任何可能有帮助的东西。