Skip to content

Instantly share code, notes, and snippets.

@MoisesTedeschi
Last active October 30, 2017 19:07
Show Gist options
  • Save MoisesTedeschi/9f337d9b3b7672f80629f0f9a15c85e6 to your computer and use it in GitHub Desktop.
Save MoisesTedeschi/9f337d9b3b7672f80629f0f9a15c85e6 to your computer and use it in GitHub Desktop.
Loop_acf
<!--Slide Carossel-->
<div class="carousel slide media-carousel" id="media">
<?php
$arg_clientes = array(
'post_type' => 'cadastro_clientes',
'posts_per_page' => 4,
);
?>
<?php $novo_clientes = new WP_Query($arg_clientes); ?>
<!--Carrossel Inner-->
<div class="carousel-inner">
<?php if($novo_clientes->have_post() ): ?>
<?php $cont = 1; ?>
<?php while ($novo_clientes->have_post() ) : ?>
<?php if($cont == 1): ?>
<?php $classe = 'item active'; ?>
<?php else: $classe = 'item'; ?>
<?php endif; ?>
<div class="<?php echo $classe; ?>">
<!--Linha Exibição-->
<div class="row">
<div class="col-md-3">
<?php $novo_clientes->the_row(); ?>
<a href="<?php the_sub_field('url_cliente'); ?>">
<img src="<?php the_sub_field('logotipo'); ?>">
</a>
</div>
</div>
<!--Linha Exibição-->
</div>
<?php $cont = ++$cont; ?>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php else : echo "Não há cliente cadastrado!"; ?>
<?php endif; ?>
</div>
<!--Carrossel Inner-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment