Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- SUB HEADER EXAMPLE -->
- <?php if( get_field('sub_heading') ): ?>
- <h2><?php the_field('sub_heading'); ?></h2>
- <?php endif; ?>
- <!-- HERO IMAGE EXAMPLE -->
- <div class="hero">
- <?php $image = get_field('hero_image'); ?>
- <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />
- </div>
- <!-- UNORDERED LIST EXAMPLE -->
- <?php if( have_rows('event') ): ?>
- <ul>
- <?php while( have_rows('event') ): the_row(); ?>
- <li>
- <a href="<?php the_sub_field('url'); ?>"><?php the_sub_field('title'); ?></a>
- </li>
- <?php endwhile; ?>
- </ul>
- <?php endif; ?>
Add Comment
Please, Sign In to add comment