isaacadams

ACF INTRO

Sep 22nd, 2021 (edited)
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <!-- SUB HEADER EXAMPLE -->
  2. <?php if( get_field('sub_heading') ): ?>
  3. <h2><?php the_field('sub_heading'); ?></h2>
  4. <?php endif; ?>
  5.  
  6. <!-- HERO IMAGE EXAMPLE -->
  7. <div class="hero">
  8. <?php $image = get_field('hero_image'); ?>
  9. <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />
  10. </div>
  11.  
  12. <!-- UNORDERED LIST EXAMPLE -->
  13. <?php if( have_rows('event') ): ?>
  14. <ul>
  15. <?php while( have_rows('event') ): the_row(); ?>
  16. <li>
  17. <a href="<?php the_sub_field('url'); ?>"><?php the_sub_field('title'); ?></a>
  18. </li>
  19. <?php endwhile; ?>
  20. </ul>
  21. <?php endif; ?>
Add Comment
Please, Sign In to add comment