Skip to content

Instantly share code, notes, and snippets.

View bellial's full-sized avatar
🛸
Dreaming

Priscilla Reges bellial

🛸
Dreaming
View GitHub Profile
@bellial
bellial / carouse-nav-indicators.php
Created October 12, 2021 03:09 — forked from neilgee/carouse-nav-indicators.php
Bootstrap carousel ACF Repeaters
<?php
// *Repeater
// carousel_repeater
// *Sub-Fields
// carousel_image
// carousel_text
// check if the repeater field has rows of data
if( have_rows('carousel_repeater') ):
@bellial
bellial / new_gist_file.php
Created September 28, 2021 20:46 — forked from nickberens360/new_gist_file.php
wordpress: Full dynamic bootstrap carousel code
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<?php
$args = array(
'post_type' => 'slides1',
'orderby' => 'menu_order title',
'order' => 'ASC',
);
$query = new WP_Query( $args );