Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <div class="tab-pane" id="first-tab-content" role="tabpanel">
  2. <h2>Red items</h2>
  3. <?php while( have_rows('products') ): the_row();
  4. $name = get_sub_field('name');
  5. $price = get_sub_field('price');
  6. $colors = get_sub_field('colors');
  7.  
  8. if( in_array('red', $colors) ) { ?>
  9. Name: <?php echo $name; ?>
  10. Price: <?php echo $name; ?>
  11. <?php endwhile; ?>
  12. </div>
  13.  
  14. <div class="tab-pane" id="second-tab-content" role="tabpanel">
  15. <h2>Blue items</h2>
  16. <?php while( have_rows('products') ): the_row();
  17. $name = get_sub_field('name');
  18. $price = get_sub_field('price');
  19. $colors = get_sub_field('colors');
  20.  
  21. if( in_array('blue', $colors) ) { ?>
  22. Name: <?php echo $name; ?>
  23. Price: <?php echo $name; ?>
  24. <?php endwhile; ?>
  25. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement