我的WordPress网站上的一个页面上有多个滑块。使用ACF添加第二个带图库自定义选项时,它不会显示任何添加到其中的图像。
代码: JS
$('.slideshow').slick({
slidesToShow: 3,
slidesToScroll: 1,
});
页面模板:
$images = get_field('gallery');
if( $images ): ?>
<div class="slideshow">
<?php foreach( $images as $image ): ?>
<img src="<?php echo $image['url']; ?>" />
<?php endforeach; ?>
</div>
<?php endif; ?>
我做了一个名为'gallery'的画廊领域 但它不起作用,我做错了什么?