-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-sections-slider.php
33 lines (25 loc) · 1.13 KB
/
content-sections-slider.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!-- ---------------------- Section Template ---------------------- -->
<?php if( get_row_layout() == 'slider_section' ): ?>
<?php if ( get_sub_field('slider_height') ) : ?>
<style>
.section-<?= $sectionLinkSlug; ?> .carousel-item {
/*height: <?php the_sub_field('slider_height'); ?>px !important;*/
}
</style>
<?php endif; ?>
<div class="slider-wrapper">
<div class="carousel slide" data-ride="carousel" data-interval="3000">
<div class="carousel-inner" role="listbox">
<?php $images = get_sub_field('slider_gallery'); ?>
<?php if( $images ): ?>
<?php foreach( $images as $key => $image ): ?>
<div class="carousel-item <?php echo ($key == 0) ? 'active' : '' ; ?>" style="background-image: url('<?php echo $image['url']; ?>')">
<img class="d-block img-fluid" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" style="visibility: hidden">
</div>
<?php endforeach; ?>
<?php endif; ?>
</div>
</div>
</div>
<?php endif; ?>
<!-- ---------------------- Section Template ---------------------- -->