This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// bootstrap carousel build with wordpress acf - simple method | |
// with add class 'active' to first div - MUST BE! | |
// also you must add css: | |
// .item {display:none;} | |
// .item.active {display:block;} | |
// first method | |
<ul id="carousel" class="slider carousel" data-ride="carousel" data-interval="<?php if ( get_field('slider__speed','option') ) { the_field('slider__speed','option'); } else { echo '4000'; } ?>"><!-- add sub_field to change slide time --!> | |
<?php if ( have_rows('slider__item','option') ) : ?> <!-- take slides from Options Page > slider__item --> |