Advertisement
Guest User

ACF Repeater loop

a guest
Oct 23rd, 2015
803
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. <div class="sidebar">
  2. <p><strong>Role:</strong><?php the_field('prole') ?></p> <!-- Project Role -->
  3. <p><strong>Project Type:</strong> <?php the_field('ptype') ?></p> <!-- Project Type -->
  4.  
  5. <?php if(get_field('repeater')): $i = 0; ?>
  6.  
  7. <?php while(has_sub_field('repeater')): $i++; ?>
  8. <a href="#" data-toggle="modal" data-target="#myModal-<?php echo $i; ?>">toggle goes here</a>
  9.  
  10. <?php endwhile; ?>
  11.  
  12. <?php endif; ?>
  13.  
  14. <?php if(get_field('repeater')): $i = 0; ?>
  15.  
  16. <?php while(has_sub_field('repeater')): $i++; ?>
  17.  
  18. <!-- Modal -->
  19. <div class="modal fade col-md-4" id="myModal-<?php echo $i; ?>" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" >
  20.  
  21. <div class="modal-dialog modal-lg">
  22. <div class="modal-content">
  23.  
  24. <div class="modal-header">
  25. <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  26. <span aria-hidden="true">&times;</span>
  27. </button>
  28. </div> <!-- /modal-header -->
  29.  
  30. <div class="row">
  31. <div class="col-xs-11">
  32.  
  33. <img src="<?php the_sub_field('gallery'); ?>" />
  34.  
  35. </div><!-- /col -->
  36. </div> <!-- /row -->
  37.  
  38. </div> <!-- /modal-content -->
  39. </div> <!-- /modal-dialog -->
  40. </div> <!-- /modal -->
  41.  
  42. <?php endwhile; ?>
  43.  
  44. <?php endif; ?>
  45.  
  46. </div <!-- /sidebar -->
  47.  
  48. </div><!-- /col -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement