Skip to content

Instantly share code, notes, and snippets.

View rrdesign's full-sized avatar

Rob Robinson rrdesign

View GitHub Profile
@adamrosloniec
adamrosloniec / gist:a3995cc3aec2537d7ee4
Last active October 30, 2020 16:28
wordpress acf bootstrap carousel - simple example
// 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 -->