Boucles ACF basiques

Publié

dans

par

Étiquettes :


Galerie d’images

<?php 
    $images = get_field('galerie');
    if( $images ):
        ?>
        <ul id="slider">
            <?php foreach( $images as $img ): ?>
                <li>
                    <img src="<?php echo $img['url']; ?>" alt="<?php echo esc_attr($img['alt']); ?>"/>
                </li>
            <?php endforeach; ?>
        </ul>
<?php endif; ?>

Repeater

<?php if( have_rows('repeater') ): ?>
    <ul>
        <?php while ( have_rows('repeater') ) : the_row(); ?>
            <li><?php echo get_sub_field('field'); ?></li>
        <?php endwhile; ?>
    </ul>
<?php endif; ?>

Repeater de post object

<?php if( have_rows('repeater') ): ?>
    <ul>
        <?php while( have_rows('repeater') ): the_row();?>
            <?php
                $post_object = get_sub_field('sub_field_object');
                $post = $post_object;
                setup_postdata( $post );
            ?>
            <li>
                <img src="<?php echo get_field('field', get_the_ID()); ?>">
                <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
            </li>
        <?php wp_reset_postdata(); endwhile; ?>
    </ul>
<?php endif; ?>