Support

Account

Home Forums Add-ons Repeater Field Repeater dont work footer page Reply To: Repeater dont work footer page

  • 
    <div class="col">
    	<?php
    		$footer = get_field('footer', 47);
    				
    			if( $footer ): ?>
    				<h3><?php echo $footer['col-footer']['col-footer-h3'];?></h3>
    			<?php endif; ?>
    
    	<?php if( have_rows('col-footer-ul-li', 47) ): ?>
     		<ul class="social">
    
     			<?php while( have_rows('col-footer-ul-li', 47) ): the_row(); ?>
    
     			    <li><a href="<?php the_sub_field('col-footer-href'); ?>"><p><?php the_sub_field('col-footer-ul-li-p'); ?></p></li>
    	 
     			<?php endwhile; ?>
    					
    		</ul>
    	<?php endif; ?>
    </div>