작성
·
36
0
선생님 강의 잘 듣고 있습니다.
강의 중에서 반복문 돌리는 중에 acf 에서 필드를 모두 구성했고 보시다시피 이미지는 6개 잘 나옵니다. 그런데 갤러리 타이틀이 1 ~ 4까지는 잘 나오고 gallery_6_title, gallery_5_title 은 나오지 않네요 필드를 몇 번 삭제 하고 다시 만들어서 페이지 탭에서 글 작성도 여러번 해봤지만 변함없어서 글 작성해봤습니다. 도와주세요 ㅠㅠ
<div class="row gallery-body">
<?php
$galleries = get_field('galleries');
if($galleries) {
foreach($galleries as $gallery) { ?>
<div class="col-md-4 col-sm-6 mb-4 gallery-item">
<div class="card card-body border-0 p-0"
style="background-image: url('<?php echo get_field($gallery . '_image')['url']; ?>');">
<div class="overlay d-flex flex-column justify-content-center align-items-center h-100 w-100 border-2">
<h2 class="gallery-title"><?php echo get_field($gallery . '_title'); ?></h2>
<a class="link-warning text-decoration-none" href="<?php echo get_field($gallery . '_image')['url']; ?>"
data-lightbox="gallery" data-title="<?php echo get_field($gallery . '_title'); ?>">View this gallery</a>
</div>
</div>
</div>
<?php }
}
?>