Created
April 19, 2022 14:26
-
-
Save wpflames/9e173169c7a4f649aa1b4f4067be0c8c to your computer and use it in GitHub Desktop.
ACF Option Pages template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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