Skip to content

Instantly share code, notes, and snippets.

@wpflames
Created April 19, 2022 14:26
Show Gist options
  • Select an option

  • Save wpflames/9e173169c7a4f649aa1b4f4067be0c8c to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/9e173169c7a4f649aa1b4f4067be0c8c to your computer and use it in GitHub Desktop.
ACF Option Pages template
<div id="boxes" class="container">
<div class="grid-2">
<?php if( have_rows('repeater_boxes', 'option') ): ?>
<?php while( have_rows('repeater_boxes', 'option') ): the_row(); ?>
<?php if( have_rows('group_box', 'option') ): ?>
<?php while( have_rows('group_box', 'option') ): the_row();
$title = get_sub_field('title', 'option');
$image = get_sub_field('img', 'option');
$link = get_sub_field('link', 'option'); ?>
<div class="box">
<a href="<?= $link; ?>">
<figure>
<img src="<?= $image; ?>" alt="<?= $title; ?>">
<figcaption><h4><?= $title; ?></h4></figcaption>
</figure>
</a>
</div>
<?php endwhile; ?>
<?php endif; ?>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment