我在WP中使用Gallery字段设置了ACF。目前我正在显示我的图像如下:
<p><?php echo get_the_content(); ?></p>
<?php $images = get_field('gallery_images');
if( $images ): ?>
<div>
<ul>
<?php foreach( $images as $image ): ?>
<li class="portrait float">
<img src="<?php echo $image['url']; ?>" />
</li>
<?php endforeach; ?>
</ul>
</div>
<?php endif;
?>
我还安装了Simple Lightbox Plugin但到目前为止还没有成功。如何添加ACF图库图像的URL链接。我尝试将我的图片代码包装在带有rel =“lightbox”的链接标记中,以及其他一些变体,包括:
<a href="<?php echo $image_large[0]; ?>"><img rel="lightbox[gallery_images] src="<?php echo $image['url']; ?>" /></a>
有什么方法可以在我的WP帖子中为我的ACF图库图像启用附件显示设置。我认为这可能很方便吗?
非常感谢任何帮助:)
答案 0 :(得分:0)
我使用了以下有效的方法。
<a href="<?php echo $image['url']; ?>"><img rel="lightbox[gallery_images]" src="<?php echo $image['url']; ?>" /></a>
我的所有图片都是全尺寸的,因此根本不需要以下内容:
echo $image_large[0];