Advertisement
ssaidz

AFC - Advance Repeater

Oct 3rd, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.66 KB | None | 0 0
  1. <?php
  2.  
  3. // parent loop
  4. if( have_rows('parent_repeater') ):
  5.  
  6.     while( have_rows('parent_repeater') ) : the_row();
  7.    
  8.         ?>
  9.        
  10.         <div class="row">
  11.            
  12.             <h3><?php the_sub_field('parent_title'); ?></h3>
  13.            
  14.             <?php
  15.                
  16.             // child loop
  17.             if( have_rows('child_repeater') ): ?>
  18.                
  19.                 <ul>
  20.            
  21.                 <?php while( have_rows('child_repeater') ) : the_row(); ?>
  22.                
  23.                     <li><b><?php the_sub_field('child_title'); ?></b> <?php the_sub_field('child_value'); ?></li>
  24.            
  25.                 <?php endwhile; ?>
  26.                
  27.                 </ul>
  28.            
  29.             <?php endif;
  30.             // end child loop
  31.            
  32.             ?>
  33.            
  34.         </div>
  35.        
  36.         <?php      
  37.        
  38.     endwhile;
  39.  
  40. endif;
  41. // end parent loop
  42.  
  43. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement