Guest User

Untitled

a guest
May 21st, 2018
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <?php if( have_rows('sections') ): ?>
  2. <div class="sections">
  3. <?php $count = 0; ?>
  4. <?php while( have_rows('sections') ): the_row();
  5. // vars
  6. $sectionType = get_sub_field('section_type');
  7. ?>
  8.  
  9. <div class="section section--<?php echo $sectionType; ?>>
  10. <?php if($sectionType == 'tiposezione'): ?>
  11.  
  12. <?php elseif($sectonType == 'altratipologia') : ?>
  13.  
  14. <?php endif; ?>
  15. </div>
  16. <?php $count++; ?>
  17. <?php endwhile; ?>
  18. </div>
  19. <?php endif; ?>
Add Comment
Please, Sign In to add comment